source: trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorException.java @ 871

Last change on this file since 871 was 871, checked in by pharms, 12 years ago
  • added some comments
File size: 867 bytes
Line 
1package de.ugoe.cs.autoquest.htmlmonitor;
2
3/**
4 * <p>
5 * Exception to notify all irregularities, that are specific to the HTML monitor and its
6 * components.
7 * </p>
8 *
9 * @author Patrick Harms
10 */
11class HtmlMonitorException extends Exception {
12
13    /**  */
14    private static final long serialVersionUID = 1L;
15
16    /**
17     * <p>
18     * initializes an exception with a simple message
19     * </p>
20     *
21     * @param message the message of the exception
22     */
23    HtmlMonitorException(String message) {
24        super(message);
25    }
26
27    /**
28     * <p>
29     * initializes an exception with a simple message and a causing exception
30     * </p>
31     *
32     * @param message the message of the exception
33     * @param cause   the root cause of the exception
34     */
35    HtmlMonitorException(String message, Throwable cause) {
36        super(message, cause);
37    }
38
39}
Note: See TracBrowser for help on using the repository browser.