public class ICUUncheckedIOException
extends RuntimeException
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.lang.RuntimeException | |||
↳ | android.icu.util.ICUUncheckedIOException |
未经检查的版本IOException
。 某些ICU API不会抛出标准异常,而是将其包装到未经检查的版本中。
目前这扩展了 RuntimeException
,但是当ICU可以依赖于Java 8时,应该将该类改为扩展java.io.UncheckedIOException。
Public constructors |
|
---|---|
ICUUncheckedIOException() 默认的构造函数。 |
|
ICUUncheckedIOException(String message) 构造函数。 |
|
ICUUncheckedIOException(Throwable cause) 构造函数。 |
|
ICUUncheckedIOException(String message, Throwable cause) 构造函数。 |
Inherited methods |
|
---|---|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
ICUUncheckedIOException (String message)
构造函数。
Parameters | |
---|---|
message |
String : exception message string |
ICUUncheckedIOException (Throwable cause)
构造函数。
Parameters | |
---|---|
cause |
Throwable : original exception (normally a IOException ) |
ICUUncheckedIOException (String message, Throwable cause)
构造函数。
Parameters | |
---|---|
message |
String : exception message string |
cause |
Throwable : original exception (normally a IOException ) |