org.picocontainer
public class PicoInitializationException extends PicoException
Since: 1.0
| Constructor Summary | |
|---|---|
| protected | PicoInitializationException()
Construct a new exception with no cause and no detail message. |
| PicoInitializationException(String message)
Construct a new exception with no cause and the specified detail message. | |
| PicoInitializationException(Throwable cause)
Construct a new exception with the specified cause and no detail message.
| |
| PicoInitializationException(String message, Throwable cause)
Construct a new exception with the specified cause and the specified detail message.
| |
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.Parameters: message the message detailing the exception.
Parameters: cause the exception that caused this one.
Parameters: message the message detailing the exception. cause the exception that caused this one.