Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-dom-codec / src / main / java / org / opendaylight / mdsal / binding / javav2 / dom / codec / impl / context / base / IncorrectNestingException.java
diff --git a/binding2/mdsal-binding2-dom-codec/src/main/java/org/opendaylight/mdsal/binding/javav2/dom/codec/impl/context/base/IncorrectNestingException.java b/binding2/mdsal-binding2-dom-codec/src/main/java/org/opendaylight/mdsal/binding/javav2/dom/codec/impl/context/base/IncorrectNestingException.java
deleted file mode 100644 (file)
index 16a4385..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2017 Pantheon Technologies 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.mdsal.binding.javav2.dom.codec.impl.context.base;
-
-import com.google.common.annotations.Beta;
-import javax.annotation.Nonnull;
-import javax.annotation.Nullable;
-
-/**
- * Thrown where incorrect nesting of data structures was detected
- * and was caused by user.
- */
-@Beta
-class IncorrectNestingException extends IllegalArgumentException {
-
-    private static final long serialVersionUID = 1L;
-
-    protected IncorrectNestingException(final String message) {
-        super(message);
-    }
-
-    public static IncorrectNestingException create(final String message, final Object... args) {
-        return new IncorrectNestingException(String.format(message, args));
-    }
-
-    public static void check(final boolean check, final String message, final Object... args) {
-        if (!check) {
-            throw IncorrectNestingException.create(message, args);
-        }
-    }
-
-    @Nonnull
-    public static <V> V checkNonNull(@Nullable final V nullable, final String message, final Object... args) {
-        if (nullable != null) {
-            return nullable;
-        }
-        throw IncorrectNestingException.create(message, args);
-    }
-}
\ No newline at end of file