KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > turbine > util > TurbineRuntimeException


1 package org.apache.turbine.util;
2
3 /*
4  * Copyright 2001-2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License")
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
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,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18
19 import org.apache.commons.lang.exception.NestableRuntimeException;
20
21 /**
22  * This is a base class of runtime exeptions thrown by Turbine.
23  *
24  * This class represents a non-checked type exception (see
25  * {@link java.lang.RuntimeException}). It has the nested stack trace
26  * functionality found in the {@link TurbineException} class.
27  *
28  * @author <a HREF="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
29  * @author <a HREF="mailto:dlr@finemaltcoding.com">Daniel Rall</a>
30  * @author <a HREF="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
31  * @version $Id: TurbineRuntimeException.java,v 1.5.2.2 2004/05/20 03:16:38 seade Exp $
32  */

33 public class TurbineRuntimeException extends NestableRuntimeException
34 {
35     /**
36      * Constructs a new <code>TurbineRuntimeException</code> without specified
37      * detail message.
38      */

39     public TurbineRuntimeException()
40     {
41     }
42
43     /**
44      * Constructs a new <code>TurbineRuntimeException</code> with specified
45      * detail message.
46      *
47      * @param msg the error message.
48      */

49     public TurbineRuntimeException(String JavaDoc msg)
50     {
51         super(msg);
52     }
53
54     /**
55      * Constructs a new <code>TurbineRuntimeException</code> with specified
56      * nested <code>Throwable</code>.
57      *
58      * @param nested the exception or error that caused this exception
59      * to be thrown.
60      */

61     public TurbineRuntimeException(Throwable JavaDoc nested)
62     {
63         super(nested);
64     }
65
66     /**
67      * Constructs a new <code>TurbineRuntimeException</code> with specified
68      * detail message and nested <code>Throwable</code>.
69      *
70      * @param msg the error message.
71      * @param nested the exception or error that caused this exception
72      * to be thrown.
73      */

74     public TurbineRuntimeException(String JavaDoc msg, Throwable JavaDoc nested)
75     {
76         super(msg, nested);
77     }
78
79 }
80
Popular Tags