- java.lang.Object
 -  
      
- java.lang.Throwable
 -  
        
- java.lang.Error
 -  
          
- java.io.IOError
 
 
 
 
-  
       
- 实现的所有接口
 -  
         
Serializable 
public class IOError extends Error
发生严重I / O错误时抛出。- 从以下版本开始:
 - 1.6
 - 另请参见:
 - Serialized Form
 
 
-  
        
       
-  
             
方法摘要
 
 -  
             
 
-  
        
       
-  
             
构造方法详细信息
-  
IOError
public IOError(Throwable cause)
使用指定的原因构造一个新的IOError实例。 使用详细消息(cause==null ? null : cause.toString())(通常包含原因的类和详细消息)创建IOError。- 参数
 -  
              
cause- The cause of this error, ornullif the cause is not known 
 
 -  
 
 -