BUG-8004: handle implicit RPC input
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / yangtools / binding / data / codec / impl / IncorrectNestingException.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.binding.data.codec.impl;
9
10 import javax.annotation.Nonnull;
11 import javax.annotation.Nullable;
12
13 /**
14  *
15  * Thrown where incorrect nesting of data structures was detected
16  * and was caused by user.
17  *
18  */
19 public class IncorrectNestingException extends IllegalArgumentException {
20
21     private static final long serialVersionUID = 1L;
22
23     protected IncorrectNestingException(final String message) {
24         super(message);
25     }
26
27     public static IncorrectNestingException create(final String message, final Object... args) {
28         return new IncorrectNestingException(String.format(message, args));
29     }
30
31     public static void check(final boolean check, final String message, final Object... args) {
32         if(!check) {
33             throw IncorrectNestingException.create(message, args);
34         }
35     }
36
37     @Nonnull
38     public static <V> V checkNonNull(@Nullable final V nullable, final String message, final Object... args) {
39         if(nullable != null) {
40             return nullable;
41         }
42         throw IncorrectNestingException.create(message, args);
43     }
44 }