1 /*
2 * Created on 06.08.2003
3 *
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
6 */
7 package junitx.ddtunit.util;
8
9 /**
10 * Exception class for @see ClassAnalyser&. No special functionality
11 * @author jgellien
12 */
13 public class ClassAnalyserException extends RuntimeException {
14 /**
15 *
16 */
17 public ClassAnalyserException() {
18 super();
19 }
20 /**
21 * @param prevThrowable
22 */
23 public ClassAnalyserException(Throwable prevThrowable) {
24 super(prevThrowable);
25 }
26 /**
27 * @param message
28 * @param prevThrowable
29 */
30 public ClassAnalyserException(String message, Throwable prevThrowable) {
31 super(message, prevThrowable);
32 }
33 /**
34 * @param message
35 */
36 public ClassAnalyserException(String message) {
37 super(message);
38 }
39 }