01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package java.lang;
19:
20: /**
21: * This class is the superclass of all classes which represent recoverable
22: * exceptions. When Exceptions are thrown, they may be caught by application
23: * code.
24: *
25: * @see Throwable
26: * @see Error
27: * @see RuntimeException
28: */
29: public class Exception extends Throwable {
30: private static final long serialVersionUID = -3387516993124229948L;
31:
32: /**
33: * Constructs a new instance of this class with its walkback filled in.
34: */
35: public Exception() {
36: super ();
37: }
38:
39: /**
40: * Constructs a new instance of this class with its walkback and message
41: * filled in.
42: *
43: * @param detailMessage
44: * String The detail message for the exception.
45: */
46: public Exception(String detailMessage) {
47: super (detailMessage);
48: }
49:
50: /**
51: * Constructs a new instance of this class with its walkback, message and
52: * cause filled in.
53: *
54: * @param detailMessage
55: * String The detail message for the exception.
56: * @param throwable
57: * The cause of this Throwable
58: */
59: public Exception(String detailMessage, Throwable throwable) {
60: super (detailMessage, throwable);
61: }
62:
63: /**
64: * Constructs a new instance of this class with its walkback and cause
65: * filled in.
66: *
67: * @param throwable
68: * The cause of this Throwable
69: */
70: public Exception(Throwable throwable) {
71: super(throwable);
72: }
73: }
|