01: /**
02: * Copyright 2007 Jens Dietrich Licensed under the Apache License, Version 2.0 (the "License");
03: * you may not use this file except in compliance with the License.
04: * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
05: * Unless required by applicable law or agreed to in writing, software distributed under the
06: * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
07: * either express or implied. See the License for the specific language governing permissions
08: * and limitations under the License.
09: */package nz.org.take.compiler;
10:
11: import nz.org.take.TakeException;
12:
13: /**
14: * Compiler exception.
15: * @author <a href="http://www-ist.massey.ac.nz/JBDietrich/">Jens Dietrich</a>
16: */
17: public class CompilerException extends TakeException {
18:
19: /**
20: *
21: */
22: public CompilerException() {
23: super ();
24: }
25:
26: /**
27: * @param message
28: * @param cause
29: */
30: public CompilerException(String message, Throwable cause) {
31: super (message, cause);
32: }
33:
34: /**
35: * @param message
36: */
37: public CompilerException(String message) {
38: super (message);
39: }
40:
41: /**
42: * @param cause
43: */
44: public CompilerException(Throwable cause) {
45: super(cause);
46: }
47:
48: }
|