Fix checkstyle in mdsal-binding-dom-codec
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / 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.mdsal.binding.dom.codec.impl;
9
10 import javax.annotation.Nonnull;
11 import javax.annotation.Nullable;
12
13 /**
14  * Thrown where incorrect nesting of data structures was detected and was caused by user.
15  */
16 public class IncorrectNestingException extends IllegalArgumentException {
17
18     private static final long serialVersionUID = 1L;
19
20     protected IncorrectNestingException(final String message) {
21         super(message);
22     }
23
24     public static IncorrectNestingException create(final String message, final Object... args) {
25         return new IncorrectNestingException(String.format(message, args));
26     }
27
28     public static void check(final boolean check, final String message, final Object... args) {
29         if (!check) {
30             throw IncorrectNestingException.create(message, args);
31         }
32     }
33
34     @Nonnull
35     public static <V> V checkNonNull(@Nullable final V nullable, final String message, final Object... args) {
36         if (nullable != null) {
37             return nullable;
38         }
39         throw IncorrectNestingException.create(message, args);
40     }
41 }