Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / tasks / exceptions / NoServiceInstanceFoundException.java
index 2ef1a80..acf2225 100644 (file)
@@ -22,26 +22,26 @@ package org.onap.so.bpmn.servicedecomposition.tasks.exceptions;
 
 public class NoServiceInstanceFoundException extends Exception {
 
-       private static final long serialVersionUID = 3270499954054029908L;
-
-       public NoServiceInstanceFoundException() {
-               super();
-       }
-
-       public NoServiceInstanceFoundException(String message) {
-               super(message);
-       }
-       
-       public NoServiceInstanceFoundException(String message, Throwable cause) {
-               super(message, cause);
-       }
-
-       public NoServiceInstanceFoundException(Throwable cause) {
-               super(cause);
-       }
-
-       public NoServiceInstanceFoundException(String message, Throwable cause, boolean enableSuppression,
-                       boolean writableStackTrace) {
-               super(message, cause, enableSuppression, writableStackTrace);
-       }
+    private static final long serialVersionUID = 3270499954054029908L;
+
+    public NoServiceInstanceFoundException() {
+        super();
+    }
+
+    public NoServiceInstanceFoundException(String message) {
+        super(message);
+    }
+
+    public NoServiceInstanceFoundException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public NoServiceInstanceFoundException(Throwable cause) {
+        super(cause);
+    }
+
+    public NoServiceInstanceFoundException(String message, Throwable cause, boolean enableSuppression,
+            boolean writableStackTrace) {
+        super(message, cause, enableSuppression, writableStackTrace);
+    }
 }