1 package org.apache.turbine.services;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 import org.apache.turbine.util.TurbineException;
20
21 /***
22 * Thrown by <code>Initable</code> class in case of initialization
23 * problems.
24 *
25 * @author <a href="mailto:burton@apache.org">Kevin Burton</a>
26 * @author <a href="mailto:krzewski@e-point.pl">Rafal Krzewski</a>
27 * @version $Id: InitializationException.java 278822 2005-09-05 19:53:05Z henning $
28 * @see org.apache.turbine.services.Initable
29 */
30 public class InitializationException extends TurbineException
31 {
32 /*** Serial Version UID */
33 private static final long serialVersionUID = 974475242666061904L;
34
35 /***
36 * Construct an InitializationException with specified detail message.
37 *
38 * @param msg The detail message.
39 */
40 public InitializationException(String msg)
41 {
42 super(msg);
43 }
44
45 /***
46 * Construct an InitializationException with specified detail message
47 * and nested Throwable.
48 *
49 * @param msg The detail message.
50 * @param t the exception or error that caused this exception
51 * to be thrown.
52 */
53 public InitializationException(String msg, Throwable t)
54 {
55 super(msg, t);
56 }
57 }