org.picocontainer

Class PicoIntrospectionException

public class PicoIntrospectionException extends PicoException

Subclass of PicoException that is thrown when there is a problem creating, providing or locating a component instance or a part of the PicoContainer API, for example, when a request for a component is ambiguous.

Since: 1.0

Constructor Summary
PicoIntrospectionException(String message)
Construct a new exception with no cause and the specified detail message.
protected PicoIntrospectionException(Throwable cause)
Construct a new exception with the specified cause and no detail message.
PicoIntrospectionException(String message, Throwable cause)
Construct a new exception with the specified cause and the specified detail message.

Constructor Detail

PicoIntrospectionException

public PicoIntrospectionException(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.

PicoIntrospectionException

protected PicoIntrospectionException(Throwable cause)
Construct a new exception with the specified cause and no detail message.

Parameters: cause the exception that caused this one.

PicoIntrospectionException

public PicoIntrospectionException(String message, 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.