Package org.openhab.core.voice
Class DTException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.openhab.core.voice.DTException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
KSException
General purpose dialog trigger exception
- Author:
- Miguel Álvarez Díez - Initial contribution
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with null as its detail message.DTException(String message) Constructs a new exception with the specified detail message.DTException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.DTException(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
-
DTException
public DTException()Constructs a new exception with null as its detail message. -
DTException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- Detail messagecause- The cause
-
DTException
Constructs a new exception with the specified detail message.- Parameters:
message- Detail message
-
DTException
Constructs a new exception with the specified cause.- Parameters:
cause- The cause
-