public class BaseIOException
extends java.io.IOException
| Constructor and Description | 
|---|
| BaseIOException()Creates a BaseIOException with no message or cause. | 
| BaseIOException(java.lang.String message)Creates a BaseIOException with the given message. | 
| BaseIOException(java.lang.String message,
               java.lang.Throwable cause)Creates a BaseIOException with the given cause. | 
| BaseIOException(java.lang.Throwable cause)Creates a BaseIOException with the given cause. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Throwable | getCause()Returns the cause of this exception. | 
| java.lang.Throwable | getInnerThrowable()Returns the cause of this exception (same as getCause). | 
| java.lang.Throwable | initCause(java.lang.Throwable cause)Initializes the cause. | 
public BaseIOException()
public BaseIOException(java.lang.String message)
message - Exception messagepublic BaseIOException(java.lang.Throwable cause)
cause - Throwable which caused this exception to be thrown.public BaseIOException(java.lang.String message,
               java.lang.Throwable cause)
message - Exception messagecause - Throwable which caused this exception to be thrown.public java.lang.Throwable getCause()
getCause in class java.lang.Throwablepublic java.lang.Throwable getInnerThrowable()
public java.lang.Throwable initCause(java.lang.Throwable cause)
initCause in class java.lang.Throwablecause - Throwable which caused this exception to be thrown.