Class ConversionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.openhab.core.io.bin2json.ConversionException
All Implemented Interfaces:
Serializable

@NonNullByDefault public class ConversionException extends Exception
ConversionException generic exception for errors which occurs during conversion.
Author:
Pauli Anttila - Initial contribution
See Also:
  • Constructor Details

    • ConversionException

      public ConversionException()
      Constructs a new ConversionException with no detail message.
    • ConversionException

      public ConversionException(String message)
      Constructs a new ConversionException with the specified detail message.
      Parameters:
      message - the detail message describing the conversion error
    • ConversionException

      public ConversionException(String message, Throwable cause)
      Constructs a new ConversionException with the specified detail message and cause.
      Parameters:
      message - the detail message describing the conversion error
      cause - the underlying cause of the conversion error
    • ConversionException

      public ConversionException(Throwable cause)
      Constructs a new ConversionException with the specified cause.
      Parameters:
      cause - the underlying cause of the conversion error