org.neociclo.odetteftp
Class OdetteFtpException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.neociclo.odetteftp.OdetteFtpException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AuthenticationException, CommandNotRecognisedException, CorruptedBufferException, EndSessionException, EnvelopingException, InvalidCommandDataException, VirtualFileMappingException

public class OdetteFtpException
extends Exception

OdetteFTPException is the top-level exception thrown by all Odette-J classes.

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

Constructor Summary
OdetteFtpException()
          Constructor with no detail message.
OdetteFtpException(String message)
          Constructor with the specified detail message.
OdetteFtpException(String message, Throwable cause)
          Constructor with the specified detail message and throwable cause.
OdetteFtpException(Throwable cause)
          Constructor with the specified cause of the exception.
 
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

OdetteFtpException

public OdetteFtpException()
Constructor with no detail message.


OdetteFtpException

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

Parameters:
message - The detail message.

OdetteFtpException

public OdetteFtpException(String message,
                          Throwable cause)
Constructor with the specified detail message and throwable cause.

Parameters:
message - The detail message.
cause - Throwable that generated this exception.

OdetteFtpException

public OdetteFtpException(Throwable cause)
Constructor with the specified cause of the exception.

Parameters:
cause - Throwable that generated this exception.


ACCORD