org.demoiselle.signer.policy.engine.exception.PolicyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of policy-engine Show documentation
Show all versions of policy-engine Show documentation
Demoiselle Signer Component to provides a engine for ICP-BRASIL signature policies.
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);
}
}