1 package auxtestlib;
2
3 /**
4 * Exception thrown when a test case configuration (or setup) is incorrect.
5 */
6 public class TestCaseConfigurationException extends Exception {
7 /**
8 * Version for serialization.
9 */
10 private static final long serialVersionUID = 1;
11
12 /**
13 * Creates a new exception.
14 *
15 * @param description description of the exception
16 */
17 public TestCaseConfigurationException(String description) {
18 super(description);
19 }
20
21 /**
22 * Creates a new exception.
23 *
24 * @param description description of the exception
25 * @param cause cause of the exception
26 */
27 public TestCaseConfigurationException(String description, Throwable cause) {
28 super(description, cause);
29 }
30 }