01: /*
02: * $Id: WicketRuntimeException.java 458472 2006-01-03 03:13:22Z jonl $
03: * $Revision: 458472 $ $Date: 2006-01-03 04:13:22 +0100 (Tue, 03 Jan 2006) $
04: *
05: * ==============================================================================
06: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
07: * use this file except in compliance with the License. You may obtain a copy of
08: * the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15: * License for the specific language governing permissions and limitations under
16: * the License.
17: */
18: package wicket;
19:
20: /**
21: * Generic runtime exception subclass thrown by Wicket.
22: *
23: * @author Jonathan Locke
24: */
25: public class WicketRuntimeException extends RuntimeException {
26: private static final long serialVersionUID = 1L;
27:
28: /**
29: * @see RuntimeException#RuntimeException()
30: */
31: public WicketRuntimeException() {
32: super ();
33: }
34:
35: /**
36: * @see RuntimeException#RuntimeException(java.lang.String)
37: */
38: public WicketRuntimeException(final String message) {
39: super (message);
40: }
41:
42: /**
43: * @see RuntimeException#RuntimeException(java.lang.String,
44: * java.lang.Throwable)
45: */
46: public WicketRuntimeException(final String message,
47: final Throwable cause) {
48: super (message, cause);
49: }
50:
51: /**
52: * @see RuntimeException#RuntimeException(java.lang.Throwable)
53: */
54: public WicketRuntimeException(final Throwable cause) {
55: super(cause);
56: }
57: }
|