IOException instead@Deprecated public class IOExceptionWithCause extends IOException
Throwable constructors missing before Java 6.| Constructor and Description | 
|---|
IOExceptionWithCause(String message,
                                        Throwable cause)
Deprecated.  
Constructs a new instance with the given message and cause. 
 | 
IOExceptionWithCause(Throwable cause)
Deprecated.  
Constructs a new instance with the given cause. 
 | 
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic IOExceptionWithCause(String message, Throwable cause)
 As specified in Throwable, the message in the given cause is not used in this instance's
 message.
 
message - the message (see Throwable.getMessage())cause - the cause (see Throwable.getCause()). A null value is allowed.public IOExceptionWithCause(Throwable cause)
 The message is set to cause==null ? null : cause.toString(), which by default contains the class
 and message of cause. This constructor is useful for call sites that just wrap another throwable.
 
cause - the cause (see Throwable.getCause()). A null value is allowed.Copyright © 2002–2016 The Apache Software Foundation. All rights reserved.