01: /*
02: * InvalidSyntaxDefinionException.java
03: *
04: * Copyright (C) 2007 Ferran Busquets
05: *
06: * This program is free software: you can redistribute it and/or modify
07: * it under the terms of the GNU General Public License as published by
08: * the Free Software Foundation, either version 3 of the License, or
09: * any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program. If not, see <http://www.gnu.org/licenses/>.
18: *
19: */
20: package org.naturalcli;
21:
22: /**
23: * Thrown when an invalid syntax definition is found.
24: *
25: * @author Ferran Busquets
26: *
27: */
28: @SuppressWarnings("serial")
29: public class InvalidSyntaxException extends Exception {
30:
31: /**
32: *
33: */
34: public InvalidSyntaxException() {
35: // TODO Auto-generated constructor stub
36: }
37:
38: /**
39: * @param message
40: */
41: public InvalidSyntaxException(String message) {
42: super (message);
43: // TODO Auto-generated constructor stub
44: }
45:
46: /**
47: * @param cause
48: */
49: public InvalidSyntaxException(Throwable cause) {
50: super (cause);
51: // TODO Auto-generated constructor stub
52: }
53:
54: /**
55: * @param message
56: * @param cause
57: */
58: public InvalidSyntaxException(String message, Throwable cause) {
59: super (message, cause);
60: // TODO Auto-generated constructor stub
61: }
62:
63: }
|