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

Last change on this file since 857 was 857, checked in by pharms, 12 years ago
  • initial version of the HTML monitor
File size: 576 bytes
Line 
1package de.ugoe.cs.autoquest.htmlmonitor;
2
3/**
4 * <p>
5 * TODO comment
6 * </p>
7 *
8 * @author Patrick Harms
9 */
10public class HtmlMonitorException extends Exception {
11
12    /**  */
13    private static final long serialVersionUID = 1L;
14
15    /**
16     * <p>
17     * </p>
18     *
19     * @param message
20     */
21    public HtmlMonitorException(String message) {
22        super(message);
23    }
24
25    /**
26     * <p>
27     * </p>
28     *
29     * @param message
30     * @param cause
31     */
32    public HtmlMonitorException(String message, Throwable cause) {
33        super(message, cause);
34    }
35
36}
Note: See TracBrowser for help on using the repository browser.