public class IIOException extends IOException
除了消息字符串之外,还保留对另一个Throwable
( Error
或异常
)的引用。 这个引用,如果null
,是引发这个异常发生的事件。 例如,从IOException
读取的File
将被存储在那里。
Constructor and Description |
---|
IIOException(String message)
构造一个
IIOException 与给定的消息
String 。
|
IIOException(String message, Throwable cause)
构造一个
IIOException 与给定的消息
String 和一个
Throwable 这是其根本原因。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public IIOException(String message)
IIOException
与给定的消息String
。
没有根本原因设定;
getCause
将返回null
。
message
- 错误信息。
Throwable.getMessage()
public IIOException(String message, Throwable cause)
IIOException
与给定的消息
String
和一个
Throwable
这是其根本原因。
message
- 错误信息。
cause
- 导致此异常发生的
Throwable
(
Error
或
异常
)。
Throwable.getCause()
,
Throwable.getMessage()