Subclass of
PicoException that is thrown when there is:
- a problem initializing the container
- a cyclic dependency between components occurs.
- problem adding a component
- a request for a component that is ambiguous.
public PicoCompositionException(String message)(Code)
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.
Construct a new exception with the specified cause and the specified detail message.
Parameters: message - the message detailing the exception. Parameters: cause - the exception that caused this one.