001/* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.apache.commons.math3.exception; 018 019import org.apache.commons.math3.exception.util.LocalizedFormats; 020import org.apache.commons.math3.exception.util.Localizable; 021 022/** 023 * Exception to be thrown when some argument is out of range. 024 * 025 * @since 2.2 026 */ 027public class OutOfRangeException extends MathIllegalNumberException { 028 /** Serializable version Id. */ 029 private static final long serialVersionUID = 111601815794403609L; 030 /** Lower bound. */ 031 private final Number lo; 032 /** Higher bound. */ 033 private final Number hi; 034 035 /** 036 * Construct an exception from the mismatched dimensions. 037 * 038 * @param wrong Requested value. 039 * @param lo Lower bound. 040 * @param hi Higher bound. 041 */ 042 public OutOfRangeException(Number wrong, 043 Number lo, 044 Number hi) { 045 this(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi); 046 } 047 048 /** 049 * Construct an exception from the mismatched dimensions with a 050 * specific context information. 051 * 052 * @param specific Context information. 053 * @param wrong Requested value. 054 * @param lo Lower bound. 055 * @param hi Higher bound. 056 */ 057 public OutOfRangeException(Localizable specific, 058 Number wrong, 059 Number lo, 060 Number hi) { 061 super(specific, wrong, lo, hi); 062 this.lo = lo; 063 this.hi = hi; 064 } 065 066 /** 067 * @return the lower bound. 068 */ 069 public Number getLo() { 070 return lo; 071 } 072 /** 073 * @return the higher bound. 074 */ 075 public Number getHi() { 076 return hi; 077 } 078}