Refactored YANG types resolving.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / model / parser / util / YangParseException.java
index bc1c9d6ac284f87d7578f40e313395d68b848e2a..331869a0f7f66fb27dd938b2d30e3b30e81d7ce1 100644 (file)
@@ -15,4 +15,8 @@ public class YangParseException extends RuntimeException {
         super(errorMsg);
     }
 
         super(errorMsg);
     }
 
+    public YangParseException(String errorMsg, Exception exception) {
+        super(errorMsg, exception);
+    }
+
 }
 }