|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.picocontainer.PicoException
public abstract class PicoException
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 throw NullPointerException
when
null
values are provided for method arguments, and this is not allowed.
Constructor Summary | |
---|---|
protected |
PicoException()
Construct a new exception with no cause and no detail message. |
protected |
PicoException(String message)
Construct a new exception with no cause and the specified detail message. |
protected |
PicoException(String message,
Throwable cause)
Construct a new exception with the specified cause and the specified detail message. |
protected |
PicoException(Throwable cause)
Construct a new exception with the specified cause and no detail message. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected PicoException()
protected PicoException(String message)
message
- the message detailing the exception.protected PicoException(Throwable cause)
cause
- the exception that caused this one.protected PicoException(String message, Throwable cause)
message
- the message detailing the exception.cause
- the exception that caused this one.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |