Ignore:
Timestamp:
10/12/12 15:08:45 (12 years ago)
Author:
pharms
Message:
  • added some comments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorException.java

    r870 r871  
    99 * @author Patrick Harms 
    1010 */ 
    11 public class HtmlMonitorException extends Exception { 
     11class HtmlMonitorException extends Exception { 
    1212 
    1313    /**  */ 
     
    2121     * @param message the message of the exception 
    2222     */ 
    23     public HtmlMonitorException(String message) { 
     23    HtmlMonitorException(String message) { 
    2424        super(message); 
    2525    } 
     
    3333     * @param cause   the root cause of the exception 
    3434     */ 
    35     public HtmlMonitorException(String message, Throwable cause) { 
     35    HtmlMonitorException(String message, Throwable cause) { 
    3636        super(message, cause); 
    3737    } 
Note: See TracChangeset for help on using the changeset viewer.