public class DataTransferException extends Exception
AsyncReport,
Serialized Form| Constructor and Description |
|---|
DataTransferException()
Creates the exception with
null as its
detail message. |
DataTransferException(String message)
Creates the exception with a specific
detail message. |
DataTransferException(String message,
Throwable cause)
Creates the exception with a specific
detail message and cause. |
DataTransferException(Throwable cause)
Creates the exception with a specific
cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic DataTransferException(Throwable cause)
cause.
The detail message will be the string returned
by the cause.toString() call.cause - the cause of the failure of the data transfer. This argument
can be null if there is no cause but this exception describes
the failure.public DataTransferException(String message, Throwable cause)
detail message and cause.message - the message to be returned by
getMessage(). This argument can be null.cause - the cause of the failure of the data transfer. This argument
can be null if there is no cause but this exception describes
the failure.public DataTransferException(String message)
detail message.message - the message to be returned by
getMessage(). This argument can be null.public DataTransferException()
null as its
detail message.