io.setl.json.exception.InvalidPatchException 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;
/**
* The JSON specification of a patch was invalid.
*
* @author Simon Greatrix on 28/04/2021.
*/
public class InvalidPatchException extends JsonException {
/**
* New instance with message.
*
* @param message the message
*/
public InvalidPatchException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy