Package io.netty.handler.codec.http2
Class Http2Exception.StreamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.netty.handler.codec.http2.Http2Exception
-
- io.netty.handler.codec.http2.Http2Exception.StreamException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
Http2Exception.HeaderListSizeException
- Enclosing class:
- Http2Exception
public static class Http2Exception.StreamException extends Http2Exception
Represents an exception that can be isolated to a single stream (as opposed to the entire connection).- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class io.netty.handler.codec.http2.Http2Exception
Http2Exception.ClosedStreamCreationException, Http2Exception.CompositeStreamException, Http2Exception.HeaderListSizeException, Http2Exception.ShutdownHint, Http2Exception.StreamException
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
private int
streamId
-
Constructor Summary
Constructors Constructor Description StreamException(int streamId, Http2Error error, java.lang.String message)
StreamException(int streamId, Http2Error error, java.lang.String message, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
streamId()
-
Methods inherited from class io.netty.handler.codec.http2.Http2Exception
closedStreamError, connectionError, connectionError, error, headerListSizeError, isStreamError, newStatic, shutdownHint, streamError, streamError, streamId
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
streamId
private final int streamId
-
-
Constructor Detail
-
StreamException
StreamException(int streamId, Http2Error error, java.lang.String message)
-
StreamException
StreamException(int streamId, Http2Error error, java.lang.String message, java.lang.Throwable cause)
-
-