Index: TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java =================================================================== RCS file: /usr/local/cvsroot/TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java,v diff -u -r1.2 -r1.3 --- TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java 17 Sep 2006 06:09:25 -0000 1.2 +++ TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java 13 Jan 2014 08:47:10 -0000 1.3 @@ -23,48 +23,42 @@ package org.lamsfoundation.testharness; /** - * @version - * - *
- * View Source - *
- * - * @author Fei Yang + * @author Fei Yang */ public class TestHarnessException extends RuntimeException { - private static final long serialVersionUID = 6481839981681761094L; + /** + * Constructor for TestHarnessException. + */ + public TestHarnessException() { + super(); + } - /** - * Constructor for TestHarnessException. - */ - public TestHarnessException() { - super(); - } + /** + * Constructor for TestHarnessException. + * + * @param message + */ + public TestHarnessException(String message) { + super(message); + } - /** - * Constructor for TestHarnessException. - * @param message - */ - public TestHarnessException(String message) { - super(message); - } + /** + * Constructor for TestHarnessException. + * + * @param message + * @param cause + */ + public TestHarnessException(String message, Throwable cause) { + super(message, cause); + } - /** - * Constructor for TestHarnessException. - * @param message - * @param cause - */ - public TestHarnessException(String message, Throwable cause) { - super(message, cause); - } - - /** - * Constructor for TestHarnessException. - * @param cause - */ - public TestHarnessException(Throwable cause) { - super(cause); - } - -} + /** + * Constructor for TestHarnessException. + * + * @param cause + */ + public TestHarnessException(Throwable cause) { + super(cause); + } +} \ No newline at end of file