TopBlend: Here is the first difference. There are 4 differences. is old. is new.


java.io
Class IOError


java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.io.IOError
All Implemented Interfaces:
Serializable

public class IOError
extends Error

Thrown when a serious I/O error has occurred.

Since:
1.6
See Also:
Serialized Form

Constructor Summary
IOError ( Throwable
          Constructs a new instance of IOError this error, with the specified cause.
 
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
clone , equals , finalize , getClass , hashCode , notify , notifyAll , wait , wait , wait
 

Constructor Detail

IOError


public IOError(Throwable cause)
Constructs a new instance of IOError this error, with the specified cause. The IOError

If the cause is created with the detail message of not (cause==null ? null : cause.toString()) null (which typically contains the class and detail message of cause). then the detail string of the new error will be that of the given cause.

Parameters:
cause - The cause of this error, or null if the cause is not known