AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / serialization / db / exceptions / NoEdgeRuleFoundException.java
index 758d76c..0f2a044 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.serialization.db.exceptions;
 
 import org.onap.aai.exceptions.AAIException;
 
 public class NoEdgeRuleFoundException extends AAIException {
 
-       private static final long serialVersionUID = -906843868234976763L;
-       
-       public NoEdgeRuleFoundException(String message) {
-               super("AAI_6107", message);
-       }
+    private static final long serialVersionUID = -906843868234976763L;
+
+    public NoEdgeRuleFoundException(String message) {
+        super("AAI_6107", message);
+    }
 
-       public NoEdgeRuleFoundException(Throwable cause) {
-               super("AAI_6107",cause);
-       }
+    public NoEdgeRuleFoundException(Throwable cause) {
+        super("AAI_6107", cause);
+    }
 
-       public NoEdgeRuleFoundException(String message, Throwable cause) {
-               super("AAI_6107", cause, message);
-       }
+    public NoEdgeRuleFoundException(String message, Throwable cause) {
+        super("AAI_6107", cause, message);
+    }
 }