Class FastJsonException

java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.exceptions.FastJsonException
All Implemented Interfaces:
Serializable

public class FastJsonException extends Exception
Similar to JSONException, but with the difference that this is a checked exception.
Since:
7.0.0
Author:
XIMA MEDIA GmbH
See Also:
  • Constructor Details

    • FastJsonException

      public FastJsonException(String message)
      Creates a new fast JSON exception with the given message.
      Parameters:
      message - Message explaining the exception that occurred.
    • FastJsonException

      public FastJsonException(String message, Throwable cause)
      Creates a new fast JSON exception with the given message and cause.
      Parameters:
      message - Message explaining the exception that occurred.
      cause - The underlying cause that resulted in this exception.
    • FastJsonException

      public FastJsonException(Throwable cause)
      Creates a new fast JSON exception with the given cause.
      Parameters:
      cause - The underlying cause that resulted in this exception.