| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.apache.james.nntpserver.NNTPException
NNTPException | public class NNTPException extends RuntimeException (Code) | | Exception Wrapper, like javax.servlet.ServletException.
Purpose is to catch and wrap exceptions into unchecked NNTP specific.
Protocol handler catches the exception and returns error info to client.
Error Information is obtained by calling 'getMessage'
|
NNTPException | public NNTPException(String msg)(Code) | | Create an NNTPException with an error message and no
encapsulated Throwable
Parameters: msg - the error message for this exception |
NNTPException | public NNTPException(String msg, Throwable t)(Code) | | Create an NNTPException with an error message and an
encapsulated Throwable
Parameters: msg - the error message for this exception Parameters: t - the encapsulated Throwable |
NNTPException | public NNTPException(Throwable t)(Code) | | Create an NNTPException with an
encapsulated Throwable
Parameters: t - the encapsulated Throwable |
|
|
|