View Javadoc

1   package org.apache.turbine.services;
2   
3   /*
4    * Copyright 2001-2005 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.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  }