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

com.teststeps.thekla4j.utils.json.exception.JsonParseException Maven / Gradle / Ivy

package com.teststeps.thekla4j.utils.json.exception;

public class JsonParseException extends RuntimeException {
  private JsonParseException(String message) {
    super(message);
  }

  private JsonParseException(String message, Throwable cause) {
    super(message, cause);
  }

  public static JsonParseException withMessage(String message) {
    return new JsonParseException(message);
  }

  public static JsonParseException withMessageAndCause(String message, Throwable cause) {
    return new JsonParseException(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy