Class StreamException

All Implemented Interfaces:
Serializable

public class StreamException extends RuntimeException
Runtime exception thrown on stream IO errors. Effectively a runtime equivalent of IOException.
Author:
Middleware Services
See Also:
  • Constructor Details

    • StreamException

      public StreamException(String message)
      Creates a new instance with the given error message.
      Parameters:
      message - Error message.
    • StreamException

      public StreamException(IOException cause)
      Creates a new instance with causing IO exception.
      Parameters:
      cause - IO exception to wrap.