Package org.openhab.core.voice
Class KSException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.openhab.core.voice.KSException
- All Implemented Interfaces:
- Serializable
General purpose keyword spotting exception
- Author:
- Kelly Davis - Initial contribution
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a new exception with null as its detail message.KSException(String message) Constructs a new exception with the specified detail message.KSException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.KSException(Throwable cause) Constructs a new exception with the specified cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
KSExceptionpublic KSException()Constructs a new exception with null as its detail message.
- 
KSExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- Detail message
- cause- The cause
 
- 
KSExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- Detail message
 
- 
KSExceptionConstructs a new exception with the specified cause.- Parameters:
- cause- The cause
 
 
-