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

io.setl.json.exception.InvalidPatchException 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;

/**
 * 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