Class ConversationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.openhab.core.voice.text.conversation.ConversationException
- All Implemented Interfaces:
Serializable
General purpose conversation exception.
- Author:
- Miguel Álvarez Díez - Initial contribution
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with null as its detail message.ConversationException(String message) Constructs a new exception with the specified detail message.ConversationException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ConversationException(Throwable cause) Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConversationException
public ConversationException()Constructs a new exception with null as its detail message. -
ConversationException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- Detail messagecause- The cause
-
ConversationException
Constructs a new exception with the specified detail message.- Parameters:
message- Detail message
-
ConversationException
Constructs a new exception with the specified cause.- Parameters:
cause- The cause
-