Class ChannelNotFound
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.adamantic.quicknote.exceptions.BusinessException
io.adamantic.quicknote.exceptions.ChannelNotFound
- All Implemented Interfaces:
Serializable
Exception thrown when a channel is not found.
- Author:
- Domenico Barra - domenico@adamantic.io
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionChannelNotFound(String name) Constructor specifying the name of the channel that was not found.ChannelNotFound(String name, Throwable cause) Constructor specifying the name of the channel that was not found and the cause of lookup failure. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ChannelNotFound
Constructor specifying the name of the channel that was not found.- Parameters:
name- the name of the channel that was not found.
-
ChannelNotFound
Constructor specifying the name of the channel that was not found and the cause of lookup failure.- Parameters:
name- the name of the channel that was not found.cause- the cause of lookup failure.
-