01: /**
02: * This program is licensed under Common Public License Version 0.5.
03: *
04: * For License Information and conditions of use, see "LICENSE" in packaged
05: */package net.wangs.jtestcase;
06:
07: /**
08: * JTestCaseException tags exceptions for JTestCase
09: * @author <a href="mailto:yuqingwang_99@yahoo.com">Yuqing Wang</a>
10: */
11: public class JTestCaseException extends Exception {
12: /**
13: * Static Version ID
14: */
15: private static final long serialVersionUID = 1L;
16:
17: /**
18: * Exception constructor
19: */
20: public JTestCaseException() {
21: super ();
22: }
23:
24: /**
25: * JTestCaseException constructor
26: * @param s
27: */
28: public JTestCaseException(String s) {
29: super(s);
30: }
31:
32: }
|