Class EventStreamClosedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- software.amazon.awssdk.eventstreamrpc.EventStreamClosedException
-
- All Implemented Interfaces:
Serializable
public class EventStreamClosedException extends RuntimeException
Thrown when a EventStream closed exception occurs- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EventStreamClosedException(long continauationId)
Creates a new EventStreamClosedException from the given continuation IDEventStreamClosedException(String msg)
Creates a new EventStreamClosedException with a given messasge
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
EventStreamClosedException
public EventStreamClosedException(long continauationId)
Creates a new EventStreamClosedException from the given continuation ID- Parameters:
continauationId
- The continuation ID that caused the exception
-
EventStreamClosedException
public EventStreamClosedException(String msg)
Creates a new EventStreamClosedException with a given messasge- Parameters:
msg
- The message to associated with the EventStreamClosedException
-
-