org.picocontainer
Class PicoInitializationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.picocontainer.PicoException
                  extended by org.picocontainer.PicoInitializationException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
PicoInstantiationException, PicoInvocationTargetInitializationException

public class PicoInitializationException
extends PicoException

Subclass of PicoException that is thrown when there is a problem initializing the container or some other part of the PicoContainer api, for example, when a cyclic dependency between components occurs.

Since:
1.0
Version:
$Revision$
See Also:
Serialized Form

Constructor Summary
protected PicoInitializationException()
          Deprecated. Use public constructors
  PicoInitializationException(java.lang.String message)
          Construct a new exception with no cause and the specified detail message.
  PicoInitializationException(java.lang.String message, java.lang.Throwable cause)
          Construct a new exception with the specified cause and the specified detail message.
  PicoInitializationException(java.lang.Throwable cause)
          Construct a new exception with the specified cause and no detail message.
 
Method Summary
 
Methods inherited from class org.picocontainer.PicoException
getCause, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PicoInitializationException

protected PicoInitializationException()
Deprecated. Use public constructors

Construct a new exception with no cause and no detail message. Note modern JVMs may still track the exception that caused this one.


PicoInitializationException

public PicoInitializationException(java.lang.String message)
Construct a new exception with no cause and the specified detail message. Note modern JVMs may still track the exception that caused this one.

Parameters:
message - the message detailing the exception.

PicoInitializationException

public PicoInitializationException(java.lang.Throwable cause)
Construct a new exception with the specified cause and no detail message.

Parameters:
cause - the exception that caused this one.

PicoInitializationException

public PicoInitializationException(java.lang.String message,
                                   java.lang.Throwable cause)
Construct a new exception with the specified cause and the specified detail message.

Parameters:
message - the message detailing the exception.
cause - the exception that caused this one.