1 package org.apache.turbine.util;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 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 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 msg, Throwable nested)
75 {
76 super(msg, nested);
77 }
78
79 }