01: /* IllegalSyntaxException.java
02:
03: {{IS_NOTE
04:
05: Purpose:
06: Description:
07: History:
08: 2001/10/25 10:31:13, Create, Tom M. Yeh.
09: }}IS_NOTE
10:
11: Copyright (C) 2001 Potix Corporation. All Rights Reserved.
12:
13: {{IS_RIGHT
14: This program is distributed under GPL Version 2.0 in the hope that
15: it will be useful, but WITHOUT ANY WARRANTY.
16: }}IS_RIGHT
17: */
18: package org.zkoss.util;
19:
20: import org.zkoss.lang.SystemException;
21:
22: /**
23: * Represents a syntax error.
24: *
25: * @author tomyeh
26: */
27: public class IllegalSyntaxException extends SystemException {
28: public IllegalSyntaxException(String msg, Throwable cause) {
29: super (msg, cause);
30: }
31:
32: public IllegalSyntaxException(String msg) {
33: super (msg);
34: }
35:
36: public IllegalSyntaxException(Throwable cause) {
37: super (cause);
38: }
39:
40: public IllegalSyntaxException() {
41: }
42:
43: public IllegalSyntaxException(int code, Object[] fmtArgs,
44: Throwable cause) {
45: super (code, fmtArgs, cause);
46: }
47:
48: public IllegalSyntaxException(int code, Object fmtArg,
49: Throwable cause) {
50: super (code, fmtArg, cause);
51: }
52:
53: public IllegalSyntaxException(int code, Object[] fmtArgs) {
54: super (code, fmtArgs);
55: }
56:
57: public IllegalSyntaxException(int code, Object fmtArg) {
58: super (code, fmtArg);
59: }
60:
61: public IllegalSyntaxException(int code, Throwable cause) {
62: super (code, cause);
63: }
64:
65: public IllegalSyntaxException(int code) {
66: super(code);
67: }
68: }
|