Package org.apache.commons.net.nntp
Class NNTPConnectionClosedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.net.nntp.NNTPConnectionClosedException
- All Implemented Interfaces:
- Serializable
NNTPConnectionClosedException is used to indicate the premature or unexpected closing of an NNTP connection resulting from a
 
NNTPReply.SERVICE_DISCONTINUED  response (NNTP reply code 400) to a failed NNTP command.
 This exception is derived from IOException and therefore may be caught either as an IOException or specifically as an NNTPConnectionClosedException.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a NNTPConnectionClosedException with no messageNNTPConnectionClosedException(String message) Constructs a NNTPConnectionClosedException with a specified message.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NNTPConnectionClosedExceptionpublic NNTPConnectionClosedException()Constructs a NNTPConnectionClosedException with no message
- 
NNTPConnectionClosedExceptionConstructs a NNTPConnectionClosedException with a specified message.- Parameters:
- message- The message explaining the reason for the exception.
 
 
-