Class JSONConversionException

All Implemented Interfaces:
Serializable

public class JSONConversionException extends RuntimeException
JSON conversion exception, thrown when a JSONConverter fails.
Author:
Matthew Tropiano
See Also:
  • Constructor Details

    • JSONConversionException

      public JSONConversionException()
      Creates a new exception.
    • JSONConversionException

      public JSONConversionException(String message)
      Creates a new exception.
      Parameters:
      message - the exception message.
    • JSONConversionException

      public JSONConversionException(Throwable exception)
      Creates a new exception.
      Parameters:
      exception - the exception that caused this one, if any.
    • JSONConversionException

      public JSONConversionException(String message, Throwable exception)
      Creates a new exception with a message.
      Parameters:
      message - the exception message.
      exception - the exception that caused this one, if any.