io.setl.json.exception.IncorrectValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of canonical-json Show documentation
Show all versions of canonical-json Show documentation
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