Convert yang-data-impl to a JPMS module
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / SchemaValidationFailedException.java
index f55270ca1fab351d32b8daecd045dcfe830767f6..a1804d07f1b66d57fbaaa323c74e944c6ea1a1f1 100644 (file)
@@ -10,17 +10,17 @@ package org.opendaylight.yangtools.yang.data.impl.schema.tree;
 
 /**
  * SchemaValidationFailedException is thrown when an attempt is made to modify the data tree and the modification
- * does not match the schema context
+ * does not match the schema context.
  */
 public class SchemaValidationFailedException extends IllegalArgumentException {
 
     private static final long serialVersionUID = 1L;
 
-    public SchemaValidationFailedException(String message){
+    public SchemaValidationFailedException(final String message) {
         super(message);
     }
 
-    public SchemaValidationFailedException(String message, Throwable cause){
+    public SchemaValidationFailedException(final String message, final Throwable cause) {
         super(message, cause);
     }