AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / parsers / exceptions / AmbiguousMapAAIException.java
index 7ee494a..edd0b7f 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.parsers.exceptions;
 
 import org.onap.aai.exceptions.AAIException;
 
 public class AmbiguousMapAAIException extends AAIException {
-       
-       private static final long serialVersionUID = -878581771971431246L;
-       
-       public AmbiguousMapAAIException(String message) {
-               super("AAI_6146", message);
-       }
-
-       public AmbiguousMapAAIException(Throwable cause) {
-               super("AAI_6146",cause);
-       }
-
-       public AmbiguousMapAAIException(String message, Throwable cause) {
-               super("AAI_6146", cause, message);
-       }
+
+    private static final long serialVersionUID = -878581771971431246L;
+
+    public AmbiguousMapAAIException(String message) {
+        super("AAI_6146", message);
+    }
+
+    public AmbiguousMapAAIException(Throwable cause) {
+        super("AAI_6146", cause);
+    }
+
+    public AmbiguousMapAAIException(String message, Throwable cause) {
+        super("AAI_6146", cause, message);
+    }
 
 }