org.apache.commons.net
Exception MalformedServerReplyException

public class MalformedServerReplyException
extends IOException
This exception is used to indicate that the reply from a server could not be interpreted. Most of the NetComponents classes attempt to be as lenient as possible when receiving server replies. Many server implementations deviate from IETF protocol specifications, making it necessary to be as flexible as possible. However, there will be certain situations where it is not possible to continue an operation because the server reply could not be interpreted in a meaningful manner. In these cases, a MalformedServerReplyException should be thrown.

SinceNot specified.
VersionNot specified.
AuthorDaniel F. Savarese
Wiki javadoc Use textile entry format.
Add your comments here.
Constructor Summary
MalformedServerReplyException()
Constructs a MalformedServerReplyException with no message
MalformedServerReplyException( String message )
Constructs a MalformedServerReplyException with a specified message.
MalformedServerReplyException
public MalformedServerReplyException ( )
Constructs a MalformedServerReplyException with no message
Wiki javadoc Use textile entry format.
Add your comments here.
MalformedServerReplyException
public MalformedServerReplyException ( String message )
Constructs a MalformedServerReplyException with a specified message.

Parameters
TypeNameDescription
String message The message explaining the reason for the exception.
Wiki javadoc Use textile entry format.
Add your comments here.