Class ICUUncheckedIOException

All Implemented Interfaces:
Serializable

@Deprecated public class ICUUncheckedIOException extends UncheckedIOException
Deprecated.
ICU 79
Unchecked version of IOException. Some ICU APIs do not throw the standard exception but instead wrap it into this unchecked version.

Since ICU 79, this is a deprecated subclass of UncheckedIOException. You should catch the standard unchecked exception.

This class had been introduced as a subclass of RuntimeException, because at that time ICU did not yet require Java 8+.

See Also:
  • Constructor Details

    • ICUUncheckedIOException

      @Deprecated public ICUUncheckedIOException()
      Deprecated.
      ICU 79
      Default constructor.
    • ICUUncheckedIOException

      @Deprecated public ICUUncheckedIOException(String message)
      Deprecated.
      ICU 79
      Constructor.
      Parameters:
      message - exception message string
    • ICUUncheckedIOException

      @Deprecated public ICUUncheckedIOException(Throwable cause)
      Deprecated.
      ICU 79
      Constructor.
      Parameters:
      cause - original exception (normally a IOException)
    • ICUUncheckedIOException

      @Deprecated public ICUUncheckedIOException(String message, Throwable cause)
      Deprecated.
      ICU 79
      Constructor.
      Parameters:
      message - exception message string
      cause - original exception (normally a IOException)