Class WrappedIOException

All Implemented Interfaces:
Serializable

@Deprecated @Private @Unstable public class WrappedIOException extends UncheckedIOException
Deprecated.
use the UncheckedIOException directly.]
A wrapper for an IOException. The constructor signature guarantees the cause will be an IOException, and as it checks for a null-argument, non-null.
See Also:
  • Constructor Details

    • WrappedIOException

      public WrappedIOException(IOException cause)
      Deprecated.
      Construct from a non-null IOException.
      Parameters:
      cause - inner cause
      Throws:
      NullPointerException - if the cause is null.