| org.jicarilla.container.JicarillaException org.jicarilla.container.builder.NoUsableHelperException
NoUsableHelperException | public class NoUsableHelperException extends JicarillaException (Code) | | A
JicarillaException that is thrown by a builder if a request to
add some provider cannot be satisfied because the builder does not know how
to handle providers of that type.
author: Leo Simons version: $Id: NoUsableHelperException.java,v 1.2 2004/01/11 11:49:27 lsimons Exp $ |
Field Summary | |
protected Object | m_provider the provider for which no helper could be found. |
Method Summary | |
public Object | getProvider() Retrieve the provider for which no helper could be found. |
m_provider | protected Object m_provider(Code) | | the provider for which no helper could be found.
|
NoUsableHelperException | public NoUsableHelperException(Object provider)(Code) | | Construct a new NoUsableHelperException instance.
Parameters: provider - the provider for which no helper could be found. |
NoUsableHelperException | public NoUsableHelperException(Object provider, String message)(Code) | | Construct a new NoUsableHelperException instance.
Parameters: message - the detail message for this exception. Parameters: provider - the provider for which no helper could be found. |
NoUsableHelperException | public NoUsableHelperException(Object provider, Throwable throwable)(Code) | | Construct a new NoUsableHelperException instance.
Parameters: throwable - the root cause of the exception. Parameters: provider - the provider for which no helper could be found. |
NoUsableHelperException | public NoUsableHelperException(Object provider, String message, Throwable throwable)(Code) | | Construct a new NoUsableHelperException instance.
Parameters: message - the detail message for this exception. Parameters: throwable - the root cause of the exception. Parameters: provider - the provider for which no helper could be found. |
getProvider | public Object getProvider()(Code) | | Retrieve the provider for which no helper could be found.
the provider for which no helper could be found. |
|
|