org.neociclo.odetteftp.protocol
Class CorruptedBufferException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.neociclo.odetteftp.OdetteFtpException
              extended by org.neociclo.odetteftp.protocol.CorruptedBufferException
All Implemented Interfaces:
Serializable

public class CorruptedBufferException
extends OdetteFtpException

This exception is thrown when the processing buffer is corrupted. It almost happen when checking buffer length and its limit ranges, or if the length of the Exchange Buffer as determined by the Stream Transmission Header is different to the length implied by the Command Code.

Version:
$Rev: 122 $ $Date: 2009-07-22 08:20:41 -0300 (Wed, 22 Jul 2009) $
Author:
Rafael Marins
See Also:
Serialized Form

Constructor Summary
CorruptedBufferException()
          Constructor with no detail message.
CorruptedBufferException(String message)
          Constructor with the specified detail message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CorruptedBufferException

public CorruptedBufferException()
Constructor with no detail message.


CorruptedBufferException

public CorruptedBufferException(String message)
Constructor with the specified detail message.

Parameters:
message - The detail message.


ACCORD