Index: TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java =================================================================== diff -u -r08950e1090443c3423a3d1c587416a2fccd8bbdf -r41955af92f3e17f2f11c07d94ae1a5f92b0d998f --- TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java (.../TestHarnessException.java) (revision 08950e1090443c3423a3d1c587416a2fccd8bbdf) +++ TestHarness4LAMS2/src/org/lamsfoundation/testharness/TestHarnessException.java (.../TestHarnessException.java) (revision 41955af92f3e17f2f11c07d94ae1a5f92b0d998f) @@ -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