01: /*
02: * Copyright 2005 jWic group (http://www.jwic.de)
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: *
16: * de.jwic.base.JWicException
17: * Created on 14.04.2005
18: * $Id: JWicException.java,v 1.1 2006/01/16 08:30:40 lordsam Exp $
19: */
20: package de.jwic.base;
21:
22: /**
23: * JWicException is thrown by the JWic framework if errors occur that can not
24: * be handled by the framework.
25: *
26: * @author Florian Lippisch
27: * @version $Revision: 1.1 $
28: */
29: public class JWicException extends RuntimeException {
30:
31: /**
32: * Comment for <code>serialVersionUID</code>
33: */
34: private static final long serialVersionUID = 1L;
35:
36: /**
37: *
38: */
39: public JWicException() {
40: super ();
41: }
42:
43: /**
44: * @param message
45: */
46: public JWicException(String message) {
47: super (message);
48: }
49:
50: /**
51: * @param message
52: * @param cause
53: */
54: public JWicException(String message, Throwable cause) {
55: super (message, cause);
56: }
57:
58: /**
59: * @param cause
60: */
61: public JWicException(Throwable cause) {
62: super(cause);
63: }
64:
65: }
|