Package org.openhab.core.io.bin2json
Class ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.openhab.core.io.bin2json.ConversionException
- All Implemented Interfaces:
Serializable
ConversionException generic exception for errors which occurs during conversion.- Author:
- Pauli Anttila - Initial contribution
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new ConversionException with no detail message.ConversionException(String message) Constructs a new ConversionException with the specified detail message.ConversionException(String message, Throwable cause) Constructs a new ConversionException with the specified detail message and cause.ConversionException(Throwable cause) Constructs a new ConversionException 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
-
ConversionException
public ConversionException()Constructs a new ConversionException with no detail message. -
ConversionException
Constructs a new ConversionException with the specified detail message.- Parameters:
message- the detail message describing the conversion error
-
ConversionException
Constructs a new ConversionException with the specified detail message and cause.- Parameters:
message- the detail message describing the conversion errorcause- the underlying cause of the conversion error
-
ConversionException
Constructs a new ConversionException with the specified cause.- Parameters:
cause- the underlying cause of the conversion error
-