1710 Rebase - Second Attempt
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / client / exceptions / SDNOException.java
1 package org.openecomp.mso.client.exceptions;
2
3
4 public class SDNOException extends Exception {
5
6         private static final long serialVersionUID = 6189163383568887383L;
7
8         public SDNOException() {
9                 super();
10         }
11         
12         public SDNOException(String string) {
13                 super(string);
14         }
15
16         public SDNOException(Exception e) {
17                 super(e);
18         }
19 }