Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / cloudify / exceptions / MsoBlueprintAlreadyExists.java
index d5d5684..9591299 100644 (file)
@@ -22,12 +22,13 @@ package org.onap.so.cloudify.exceptions;
 
 public class MsoBlueprintAlreadyExists extends MsoCloudifyException {
 
-       private static final long serialVersionUID = 1L;
+    private static final long serialVersionUID = 1L;
+
+    // Constructor to create a new MsoCloudifyException instance
+    public MsoBlueprintAlreadyExists(String blueprintId, String cloud) {
+        // Set the detailed error as the Exception 'message'
+        super(409, "Conflict",
+                "Blueprint " + blueprintId + " already exists in Cloudify Manager supporting cloud site + " + cloud);
+    }
 
-       // Constructor to create a new MsoCloudifyException instance
-       public MsoBlueprintAlreadyExists (String blueprintId, String cloud) {
-               // Set the detailed error as the Exception 'message'
-               super(409, "Conflict", "Blueprint " + blueprintId + " already exists in Cloudify Manager supporting cloud site + " + cloud);
-       }
-               
 }