KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > system > InitializationException


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.excalibur.system;
9
10 import org.apache.avalon.framework.CascadingException;
11
12 /**
13  * This exception is used to indicate something went horribly wrong in the
14  * ContainerManager, and it is unable to create a new instance of your Container.
15  *
16  * @author <a HREF="mailto:bloritsch@apache.org">Berin Loritsch</a>
17  * @version CVS $Revision: 1.1 $ $Date: 2002/01/18 23:21:01 $
18  */

19 public class InitializationException extends CascadingException
20 {
21     public InitializationException( final String JavaDoc message )
22     {
23         super( message );
24     }
25
26     public InitializationException( final String JavaDoc message, final Throwable JavaDoc source)
27     {
28         super( message, source );
29     }
30 }
31
32
Popular Tags