Add MinMaxElementsValidationFailedException
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / MinMaxElementsValidationFailedException.java
diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/MinMaxElementsValidationFailedException.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/MinMaxElementsValidationFailedException.java
new file mode 100644 (file)
index 0000000..c958f44
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * 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;
+
+import org.opendaylight.yangtools.yang.data.api.schema.tree.RequiredElementCountException;
+
+/**
+ * Exception thrown when unique constraints would be violated and we cannot throw a
+ * {@link RequiredElementCountException}.
+ */
+final class MinMaxElementsValidationFailedException extends SchemaValidationFailedException {
+    private static final long serialVersionUID = 1L;
+
+    MinMaxElementsValidationFailedException(final String message) {
+        super(message);
+    }
+}