All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.setl.json.exception.IncorrectValueException Maven / Gradle / Ivy

Go to download

An implementation of the Canonical JSON format with support for javax.json and Jackson

The newest version!
package io.setl.json.exception;

import jakarta.json.JsonException;

/**
 * An exception thrown when a patch "test" operation mismatches.
 *
 * @author Simon Greatrix on 27/02/2020.
 */
public class IncorrectValueException extends JsonException {

  private static final long serialVersionUID = 1L;


  /**
   * New instance with message.
   *
   * @param message the message
   */
  public IncorrectValueException(String message) {
    super(message);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy