Improve the performance of resoures microservice
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / edges / exceptions / AmbiguousRuleChoiceException.java
index 9baf790..3ddced9 100644 (file)
@@ -2,13 +2,13 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-18 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  *
- *    http://www.apache.org/licenses/LICENSE-2.0
+ *   http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.edges.exceptions;
 
 public class AmbiguousRuleChoiceException extends Exception {
        public AmbiguousRuleChoiceException(String msg) {
                super(msg);
        }
+
+       public AmbiguousRuleChoiceException(Throwable throwable){
+           super(throwable);
+    }
 }