com.bea.wli.sftp.spi
Class SFtpClientException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.bea.wli.sftp.spi.SFtpClientException
All Implemented Interfaces:
Serializable

public class SFtpClientException
extends Exception

This class represents SFTP client exception. One should wrap any exception in to this exception and should throw this exception from the actual implementation.

See Also:
Serialized Form

Constructor Summary
SFtpClientException()
          Default constructor
SFtpClientException(String message)
          Construts an exception using the given message
SFtpClientException(String message, Throwable cause)
          Constructs the exception using the given message and the actual exception
SFtpClientException(Throwable cause)
          Constructs the exception using the actual 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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SFtpClientException

public SFtpClientException()
Default constructor


SFtpClientException

public SFtpClientException(String message)
Construts an exception using the given message

Parameters:
message - - exception description

SFtpClientException

public SFtpClientException(String message,
                           Throwable cause)
Constructs the exception using the given message and the actual exception

Parameters:
message - - exception description
cause - - actual exception

SFtpClientException

public SFtpClientException(Throwable cause)
Constructs the exception using the actual exception

Parameters:
cause - - actual exception