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