aboutsummaryrefslogtreecommitdiffstats
path: root/PolicyEngineAPI/src/main/java/org/openecomp/policy/api/PolicyException.java
blob: f4a99fd321aabaeb3f2b88310ec3fe7e6eb58d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.openecomp.policy.api;

/**
 * PolicyException extends <code>Exception</code> to implement exceptions thrown by {@link org.openecomp.policy.api.PolicyEngine}
 * 
 * @version 0.1
 */
public class PolicyException extends Exception {
	private static final long serialVersionUID = -5006203722296799708L;
	
	public PolicyException() {
	}
	
	public PolicyException(String message) {
		super(message);
	}
	
	public PolicyException(Throwable cause){
		super(cause);
	}
	
	public PolicyException(String message, Throwable cause) {
		super(message, cause);
	}
	
	public PolicyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}
}