Implemented refine statement parsing.
[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 331869a0f7f66fb27dd938b2d30e3b30e81d7ce1..2c1b9b80d5b72d128a32e92623f9ea19dcb5ec64 100644 (file)
@@ -11,11 +11,11 @@ public class YangParseException extends RuntimeException {
 
     private static final long serialVersionUID = 1239548963471793178L;
 
-    public YangParseException(String errorMsg) {
+    public YangParseException(final String errorMsg) {
         super(errorMsg);
     }
 
-    public YangParseException(String errorMsg, Exception exception) {
+    public YangParseException(final String errorMsg, final Exception exception) {
         super(errorMsg, exception);
     }