Package org.picocontainer
Class PicoException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.picocontainer.PicoException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AbstractPicoVisitor.PicoVisitorTraversalException
,LifecycleComponentMonitor.LifecycleFailuresException
,PicoClassNotFoundException
,PicoCompositionException
,PicoLifecycleException
,PicoVerificationException
,ReflectionLifecycleException
public abstract class PicoException extends java.lang.RuntimeException
Superclass for all Exceptions in PicoContainer. You can use this if you want to catch all exceptions thrown by PicoContainer. Be aware that some parts of the PicoContainer API will also throwNullPointerException
whennull
values are provided for method arguments, and this is not allowed.- Author:
- Paul Hammant, Aslak Hellesøy
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
PicoException()
Construct a new exception with no cause and no detail message.protected
PicoException(java.lang.String message)
Construct a new exception with no cause and the specified detail message.protected
PicoException(java.lang.String message, java.lang.Throwable cause)
Construct a new exception with the specified cause and the specified detail message.protected
PicoException(java.lang.Throwable cause)
Construct a new exception with the specified cause and no detail message.
-
-
-
Constructor Detail
-
PicoException
protected PicoException()
Construct a new exception with no cause and no detail message. Note modern JVMs may still track the exception that caused this one.
-
PicoException
protected PicoException(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.
-
PicoException
protected PicoException(java.lang.Throwable cause)
Construct a new exception with the specified cause and no detail message.- Parameters:
cause
- the exception that caused this one.
-
PicoException
protected PicoException(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.
-
-