Class ClosedStreamException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.armeria.common.stream.ClosedStreamException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ClosedSessionException

public class ClosedStreamException
extends RuntimeException
A RuntimeException that is raised when a StreamMessage has been closed unexpectedly.
See Also:
Serialized Form
  • Constructor Details

    • ClosedStreamException

      public ClosedStreamException​(@Nullable String message)
      Creates a new instance with the specified message.
    • ClosedStreamException

      public ClosedStreamException​(@Nullable String message, @Nullable Throwable cause)
      Creates a new instance with the specified message and cause.
    • ClosedStreamException

      public ClosedStreamException​(@Nullable Throwable cause)
      Creates a new instance with the specified cause.
    • ClosedStreamException

      protected ClosedStreamException​(@Nullable String message, @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Creates a new instance with the specified message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.
  • Method Details