BUG-8043: correct RangeConstraint definition
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / InvalidRangeConstraintException.java
1 /*
2  * Copyright (c) 2015 Pantheon Technologies s.r.o. 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.yang.model.util.type;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.Beta;
13 import com.google.common.collect.RangeSet;
14
15 @Beta
16 public class InvalidRangeConstraintException extends IllegalArgumentException {
17     private static final long serialVersionUID = 1L;
18
19     private final RangeSet<?> offendingRangeConstraint;
20
21     protected InvalidRangeConstraintException(final RangeSet<?> offendingConstraint, final String message) {
22         super(message);
23         this.offendingRangeConstraint = requireNonNull(offendingConstraint);
24     }
25
26     public InvalidRangeConstraintException(final RangeSet<?> offendingConstraint, final String format,
27             final Object... args) {
28         this(offendingConstraint, String.format(format, args));
29     }
30
31     public RangeSet<?> getOffendingRanges() {
32         return offendingRangeConstraint;
33     }
34 }