| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.directwebremoting.extend.ContainerConfigurationException
ContainerConfigurationException | public class ContainerConfigurationException extends RuntimeException (Code) | | Something has gone wrong while configuring a Container
author: Joe Walker [joe at getahead dot ltd dot uk] |
ContainerConfigurationException | public ContainerConfigurationException(String message)(Code) | | Constructs a new runtime exception with the specified detail message.
The cause is not initialized.
Parameters: message - the detail message. |
ContainerConfigurationException | public ContainerConfigurationException(String message, Throwable cause)(Code) | | Constructs a new runtime exception with the specified detail message and
cause.
Note that the detail message associated with cause is
not automatically incorporated in this runtime exception's detail message.
Parameters: message - the detail message (which is saved for later retrievalby the ContainerConfigurationException.getMessage() method). Parameters: cause - the cause |
ContainerConfigurationException | public ContainerConfigurationException(Throwable cause)(Code) | | Constructs a new runtime exception with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause). This constructor is useful for runtime exceptions
that are little more than wrappers for other throwables.
Parameters: cause - the cause |
|
|
|