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

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

/**
 * Exception thrown when a digest test in a patch fails.
 *
 * @author Simon Greatrix on 27/02/2020.
 */
public class IncorrectDigestException extends JsonException {

  private static final long serialVersionUID = 1L;


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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy