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

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

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

public class JsonStringifyException extends RuntimeException {

  private JsonStringifyException(String message) {
    super(message);
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy