aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/exceptions/SDNOException.java
blob: b9e3c5d9add439a2edff7c2c98f76761e45a5dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.openecomp.mso.client.exceptions;


public class SDNOException extends Exception {

	private static final long serialVersionUID = 6189163383568887383L;

	public SDNOException() {
		super();
	}
	
	public SDNOException(String string) {
		super(string);
	}

	public SDNOException(Exception e) {
		super(e);
	}
}