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

fi.evolver.ai.spring.json.JsonSpecException Maven / Gradle / Ivy

package fi.evolver.ai.spring.json;

import fi.evolver.utils.format.FormatUtils;

public class JsonSpecException extends RuntimeException {
	private static final long serialVersionUID = 1L;


	public JsonSpecException(Throwable cause, String message, Object... args) {
		super(FormatUtils.format(message, args), cause);
	}

	public JsonSpecException(String message, Object... args) {
		super(FormatUtils.format(message, args));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy