Class JsonSchemaException

All Implemented Interfaces:
Serializable

public final class JsonSchemaException extends RuntimeException
Json schema related exception.
See Also:
  • Constructor Details

    • JsonSchemaException

      public JsonSchemaException(String message)
      Create a new schema exception with the provided message.
      Parameters:
      message - descriptive error message
      Throws:
      NullPointerException - if the message is null
    • JsonSchemaException

      public JsonSchemaException(String message, Throwable cause)
      Create a new schema exception with the provided message and a cause.
      Parameters:
      message - descriptive error message
      cause - the cause of this exception
      Throws:
      NullPointerException - if either message or cause is null