01: /*
02: * Created on Mar 22, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.core.compiler;
08:
09: /**
10: * @author AYegorov
11: *
12: * To change the template for this generated type comment go to
13: * Window>Preferences>Java>Code Generation>Code and Comments
14: */
15: public class CompilerException extends RuntimeException {
16: /**
17: *
18: */
19: public CompilerException() {
20: super ();
21: // XXX Auto-generated constructor stub
22: }
23:
24: /**
25: * @param message
26: */
27: public CompilerException(String message) {
28: super (message);
29: // XXX Auto-generated constructor stub
30: }
31:
32: /**
33: * @param cause
34: */
35: public CompilerException(Throwable cause) {
36: super (cause);
37: // XXX Auto-generated constructor stub
38: }
39:
40: /**
41: * @param message
42: * @param cause
43: */
44: public CompilerException(String message, Throwable cause) {
45: super(message, cause);
46: }
47: }
|