Report a dedicated exception on unique failure
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / SchemaValidationFailedException.java
index a1804d07f1b66d57fbaaa323c74e944c6ea1a1f1..b1356bf29cd15726a4527b11902379d509f32629 100644 (file)
@@ -5,7 +5,6 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.yangtools.yang.data.impl.schema.tree;
 
 /**
@@ -13,7 +12,6 @@ package org.opendaylight.yangtools.yang.data.impl.schema.tree;
  * does not match the schema context.
  */
 public class SchemaValidationFailedException extends IllegalArgumentException {
-
     private static final long serialVersionUID = 1L;
 
     public SchemaValidationFailedException(final String message) {
@@ -23,5 +21,4 @@ public class SchemaValidationFailedException extends IllegalArgumentException {
     public SchemaValidationFailedException(final String message, final Throwable cause) {
         super(message, cause);
     }
-
 }