| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException com.enterprisedt.BaseIOException
BaseIOException | public class BaseIOException extends IOException (Code) | | Extension of java.io.IOException which adds "cause" functionality.
This replicates the behaviour that is already present in JDK 1.4
or better.
author: Hans Andersen |
BaseIOException | public BaseIOException()(Code) | | Creates a BaseIOException with no message or cause.
|
BaseIOException | public BaseIOException(String message)(Code) | | Creates a BaseIOException with the given message.
Parameters: message - Exception message |
BaseIOException | public BaseIOException(Throwable cause)(Code) | | Creates a BaseIOException with the given cause.
Parameters: cause - Throwable which caused this exception to be thrown. |
BaseIOException | public BaseIOException(String message, Throwable cause)(Code) | | Creates a BaseIOException with the given cause.
Parameters: message - Exception message Parameters: cause - Throwable which caused this exception to be thrown. |
getCause | public Throwable getCause()(Code) | | Returns the cause of this exception.
Included for JDK1.4+ compatibility.
|
getInnerThrowable | public Throwable getInnerThrowable()(Code) | | Returns the cause of this exception (same as getCause).
This has a different name from JDK1.4's Exception.getCause
in order to prevent cross-over behaviour.
|
initCause | public Throwable initCause(Throwable cause)(Code) | | Initializes the cause.
Parameters: cause - Throwable which caused this exception to be thrown. |
|
|
|