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

org.demoiselle.signer.policy.engine.exception.PolicyException Maven / Gradle / Ivy

Go to download

Demoiselle Signer Component to provides a engine for ICP-BRASIL signature policies.

There is a newer version: 4.3.0
Show newest version
package org.demoiselle.signer.policy.engine.exception;
/**
 * custom unchecked exceptions for package   
 */
public class PolicyException extends RuntimeException {

	private static final long serialVersionUID = 1L;
	

	public PolicyException() {
		super();
	}

	public PolicyException(String message, Throwable cause,
			boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

	public PolicyException(String message, Throwable cause) {
		super(message, cause);
	}

	public PolicyException(String message) {
		super(message);
	}

	public PolicyException(Throwable cause) {
		super(cause);
	}

	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy