Package io.aeron.driver.exceptions
Class InvalidChannelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.aeron.exceptions.AeronException
io.aeron.exceptions.ControlProtocolException
io.aeron.driver.exceptions.InvalidChannelException
- All Implemented Interfaces:
Serializable
Indicates an invalid URI for a channel has been received by the driver from a client.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class io.aeron.exceptions.AeronException
AeronException.Category
-
Constructor Summary
ConstructorDescriptionInvalidChannelException
(Exception cause) Exception with provided cause andAeronException.Category.ERROR
andErrorCode.INVALID_CHANNEL
.InvalidChannelException
(String message) Exception with provided message andAeronException.Category.ERROR
andErrorCode.INVALID_CHANNEL
. -
Method Summary
Methods inherited from class io.aeron.exceptions.ControlProtocolException
errorCode
Methods inherited from class io.aeron.exceptions.AeronException
category, isFatal
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidChannelException
Exception with provided message andAeronException.Category.ERROR
andErrorCode.INVALID_CHANNEL
.- Parameters:
message
- to detail the exception.
-
InvalidChannelException
Exception with provided cause andAeronException.Category.ERROR
andErrorCode.INVALID_CHANNEL
.- Parameters:
cause
- of the exception.
-