| org.jicarilla.container.JicarillaException org.jicarilla.container.RegistrationException org.jicarilla.container.IllegalAdapterException
IllegalAdapterException | public class IllegalAdapterException extends RegistrationException (Code) | | A
JicarillaException that is thrown by a
Container if a
provided adapter is not supported by that container (if it is null, for
example, or if it is not of some subtype that the container requires).
author: Leo Simons version: $Id: IllegalAdapterException.java,v 1.5 2004/01/11 11:49:26 lsimons Exp $ |
m_adapter | protected Object m_adapter(Code) | | The adapter that is illegal.
|
IllegalAdapterException | public IllegalAdapterException(Object adapter)(Code) | | Construct a new IllegalAdapterException instance.
Parameters: adapter - the adapter that is illegal. |
IllegalAdapterException | public IllegalAdapterException(Object adapter, String message)(Code) | | Construct a new IllegalAdapterException instance.
Parameters: adapter - the adapter that is illegal. Parameters: message - the detail message for this exception. |
IllegalAdapterException | public IllegalAdapterException(Object adapter, Throwable throwable)(Code) | | Construct a new IllegalAdapterException instance.
Parameters: adapter - the adapter that is illegal. Parameters: throwable - the root cause of the exception. |
IllegalAdapterException | public IllegalAdapterException(Object adapter, String message, Throwable throwable)(Code) | | Construct a new IllegalAdapterException instance.
Parameters: adapter - the adapter that is illegal. Parameters: message - the detail message for this exception. Parameters: throwable - the root cause of the exception. |
getAdapter | public Object getAdapter()(Code) | | Retrieve the illegal adapter.
the adapter that is illegal. |
|
|