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