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

com.safelayer.rap.json.JsonException Maven / Gradle / Ivy

Go to download

The PKI Connector RESTAPI is a library that helps developing new PKI Connectors for TrustedX

The newest version!

package com.safelayer.rap.json;

import com.fasterxml.jackson.core.JsonProcessingException;

/**
 * @version $Revision$
 */
@SuppressWarnings("serial")
public class JsonException extends JsonProcessingException {

	public JsonException(Throwable rootCause) {
		super(rootCause);
	}
	
	public JsonException(String rootCause) {
		super(rootCause);
	}
	
	public JsonException(String message, Throwable throwable) {
		super(message, throwable);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy