Uses of Package
org.apache.commons.math4.exception
-
Packages that use org.apache.commons.math4.exception Package Description org.apache.commons.math4 Common classes used throughout the commons-math library.org.apache.commons.math4.analysis Parent package for common numerical analysis procedures, including root finding, function interpolation and integration.org.apache.commons.math4.analysis.differentiation This package holds the main interfaces and basic building block classes dealing with differentiation.org.apache.commons.math4.analysis.function Thefunctionpackage contains function objects that wrap the methods contained inMath, as well as common mathematical functions such as the gaussian and sinc functions.org.apache.commons.math4.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.apache.commons.math4.analysis.integration.gauss Gauss family of quadrature schemes.org.apache.commons.math4.analysis.interpolation Univariate real functions interpolation algorithms.org.apache.commons.math4.analysis.polynomials Univariate real polynomials implementations, seen as differentiable univariate real functions.org.apache.commons.math4.analysis.solvers Root finding algorithms, for univariate real functions.org.apache.commons.math4.distribution Implementations of common discrete and continuous distributions.org.apache.commons.math4.distribution.fitting Fitting of parameters against distributions.org.apache.commons.math4.exception Specialized exceptions for algorithms errors.org.apache.commons.math4.fraction Fraction number type and fraction number formatting.org.apache.commons.math4.linear Linear algebra support.org.apache.commons.math4.random Random Data Generationorg.apache.commons.math4.stat Data storage, manipulation and summary routines.org.apache.commons.math4.stat.correlation Correlations/Covariance computations.org.apache.commons.math4.stat.descriptive Generic univariate summary statistic objects.org.apache.commons.math4.stat.descriptive.moment Summary statistics based on moments.org.apache.commons.math4.stat.descriptive.rank Summary statistics based on ranks.org.apache.commons.math4.stat.descriptive.summary Other summary statistics.org.apache.commons.math4.stat.inference Classes providing hypothesis testing.org.apache.commons.math4.stat.interval Classes providing binomial proportion confidence interval construction.org.apache.commons.math4.stat.regression Statistical routines involving multivariate data.org.apache.commons.math4.util Convenience routines and common data structures used throughout the commons-math library. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4 Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathArithmeticException Base class for arithmetic exceptions.NullArgumentException All conditions checks that fail due to anullargument must throw this exception. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis Class Description NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NumberIsTooLargeException Exception to be thrown when a number is too large. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.differentiation Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathArithmeticException Base class for arithmetic exceptions.MathIllegalArgumentException Base class for all preconditions violation exceptions.NotPositiveException Exception to be thrown when the argument is negative.NumberIsTooLargeException Exception to be thrown when a number is too large.NumberIsTooSmallException Exception to be thrown when a number is too small. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.function Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.NoDataException Exception to be thrown when the required data is missing.NonMonotonicSequenceException Exception to be thrown when the a sequence of values is not monotonically increasing or decreasing.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.OutOfRangeException Exception to be thrown when some argument is out of range. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.integration Class Description MathIllegalArgumentException Base class for all preconditions violation exceptions.MaxCountExceededException Exception to be thrown when some counter maximum value is exceeded.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooLargeException Exception to be thrown when a number is too large.NumberIsTooSmallException Exception to be thrown when a number is too small.TooManyEvaluationsException Exception to be thrown when the maximal number of evaluations is exceeded. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.integration.gauss Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.NonMonotonicSequenceException Exception to be thrown when the a sequence of values is not monotonically increasing or decreasing.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.interpolation Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathArithmeticException Base class for arithmetic exceptions.MathIllegalArgumentException Base class for all preconditions violation exceptions.NoDataException Exception to be thrown when the required data is missing.NonMonotonicSequenceException Exception to be thrown when the a sequence of values is not monotonically increasing or decreasing.NotFiniteNumberException Exception to be thrown when a number is not finite.NotPositiveException Exception to be thrown when the argument is negative.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooSmallException Exception to be thrown when a number is too small.OutOfRangeException Exception to be thrown when some argument is out of range.ZeroException Exception to be thrown when zero is provided where it is not allowed. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.polynomials Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.NoDataException Exception to be thrown when the required data is missing.NonMonotonicSequenceException Exception to be thrown when the a sequence of values is not monotonically increasing or decreasing.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooSmallException Exception to be thrown when a number is too small. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.analysis.solvers Class Description ConvergenceException Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.MathIllegalArgumentException Base class for all preconditions violation exceptions.NoBracketingException Exception to be thrown when function values have the same sign at both ends of an interval.NoDataException Exception to be thrown when the required data is missing.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooLargeException Exception to be thrown when a number is too large.NumberIsTooSmallException Exception to be thrown when a number is too small.TooManyEvaluationsException Exception to be thrown when the maximal number of evaluations is exceeded. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.distribution Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathArithmeticException Base class for arithmetic exceptions.NotANumberException Exception to be thrown when a number is not a number.NotFiniteNumberException Exception to be thrown when a number is not finite.NotPositiveException Exception to be thrown when the argument is negative.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooLargeException Exception to be thrown when a number is too large.OutOfRangeException Exception to be thrown when some argument is out of range.ZeroException Exception to be thrown when zero is provided where it is not allowed. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.distribution.fitting Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NumberIsTooSmallException Exception to be thrown when a number is too small. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.exception Class Description MathIllegalArgumentException Base class for all preconditions violation exceptions.MathIllegalNumberException Base class for exceptions raised by a wrong number.MathIllegalStateException Base class for all exceptions that signal that the process throwing the exception is in a state that does not comply with the set of states that it is designed to be in.MathRuntimeException As of release 4.0, all exceptions thrown by the Commons Math code (exceptNullArgumentException) inherit from this class.MaxCountExceededException Exception to be thrown when some counter maximum value is exceeded.NumberIsTooSmallException Exception to be thrown when a number is too small. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.fraction Class Description ConvergenceException Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.MathIllegalArgumentException Base class for all preconditions violation exceptions.MathIllegalStateException Base class for all exceptions that signal that the process throwing the exception is in a state that does not comply with the set of states that it is designed to be in.MathRuntimeException As of release 4.0, all exceptions thrown by the Commons Math code (exceptNullArgumentException) inherit from this class.NullArgumentException All conditions checks that fail due to anullargument must throw this exception. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.linear Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathArithmeticException Base class for arithmetic exceptions.MathIllegalArgumentException Base class for all preconditions violation exceptions.MathIllegalNumberException Base class for exceptions raised by a wrong number.MathRuntimeException As of release 4.0, all exceptions thrown by the Commons Math code (exceptNullArgumentException) inherit from this class.MathUnsupportedOperationException Base class for all unsupported features.MaxCountExceededException Exception to be thrown when some counter maximum value is exceeded.MultiDimensionMismatchException Exception to be thrown when two sets of dimensions differ.NoDataException Exception to be thrown when the required data is missing.NotPositiveException Exception to be thrown when the argument is negative.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooLargeException Exception to be thrown when a number is too large.NumberIsTooSmallException Exception to be thrown when a number is too small.OutOfRangeException Exception to be thrown when some argument is out of range.ZeroException Exception to be thrown when zero is provided where it is not allowed. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.random Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathParseException Class to signal parse failures.NotPositiveException Exception to be thrown when the argument is negative.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.OutOfRangeException Exception to be thrown when some argument is out of range. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathIllegalArgumentException Base class for all preconditions violation exceptions.NoDataException Exception to be thrown when the required data is missing.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooSmallException Exception to be thrown when a number is too small. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.correlation Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathIllegalArgumentException Base class for all preconditions violation exceptions.MathUnsupportedOperationException Base class for all unsupported features.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NumberIsTooSmallException Exception to be thrown when a number is too small. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.descriptive Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathIllegalArgumentException Base class for all preconditions violation exceptions.MathIllegalStateException Base class for all exceptions that signal that the process throwing the exception is in a state that does not comply with the set of states that it is designed to be in.NullArgumentException All conditions checks that fail due to anullargument must throw this exception. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.descriptive.moment Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathIllegalArgumentException Base class for all preconditions violation exceptions.MathIllegalStateException Base class for all exceptions that signal that the process throwing the exception is in a state that does not comply with the set of states that it is designed to be in.NullArgumentException All conditions checks that fail due to anullargument must throw this exception. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.descriptive.rank Class Description MathIllegalArgumentException Base class for all preconditions violation exceptions.NullArgumentException All conditions checks that fail due to anullargument must throw this exception. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.descriptive.summary Class Description MathIllegalArgumentException Base class for all preconditions violation exceptions.NullArgumentException All conditions checks that fail due to anullargument must throw this exception. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.inference Class Description ConvergenceException Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.DimensionMismatchException Exception to be thrown when two dimensions differ.InsufficientDataException Exception to be thrown when there is insufficient data to perform a computation.MathArithmeticException Base class for arithmetic exceptions.MathIllegalArgumentException Base class for all preconditions violation exceptions.MaxCountExceededException Exception to be thrown when some counter maximum value is exceeded.NoDataException Exception to be thrown when the required data is missing.NotPositiveException Exception to be thrown when the argument is negative.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooLargeException Exception to be thrown when a number is too large.NumberIsTooSmallException Exception to be thrown when a number is too small.OutOfRangeException Exception to be thrown when some argument is out of range.ZeroException Exception to be thrown when zero is provided where it is not allowed. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.interval Class Description NotPositiveException Exception to be thrown when the argument is negative.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NumberIsTooLargeException Exception to be thrown when a number is too large.OutOfRangeException Exception to be thrown when some argument is out of range. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.stat.regression Class Description MathIllegalArgumentException Base class for all preconditions violation exceptions.MathRuntimeException As of release 4.0, all exceptions thrown by the Commons Math code (exceptNullArgumentException) inherit from this class.NoDataException Exception to be thrown when the required data is missing.OutOfRangeException Exception to be thrown when some argument is out of range. -
Classes in org.apache.commons.math4.exception used by org.apache.commons.math4.util Class Description DimensionMismatchException Exception to be thrown when two dimensions differ.MathArithmeticException Base class for arithmetic exceptions.MathIllegalArgumentException Base class for all preconditions violation exceptions.MathIllegalStateException Base class for all exceptions that signal that the process throwing the exception is in a state that does not comply with the set of states that it is designed to be in.MaxCountExceededException Exception to be thrown when some counter maximum value is exceeded.NoDataException Exception to be thrown when the required data is missing.NonMonotonicSequenceException Exception to be thrown when the a sequence of values is not monotonically increasing or decreasing.NotANumberException Exception to be thrown when a number is not a number.NotFiniteNumberException Exception to be thrown when a number is not finite.NotPositiveException Exception to be thrown when the argument is negative.NotStrictlyPositiveException Exception to be thrown when the argument is not greater than 0.NullArgumentException All conditions checks that fail due to anullargument must throw this exception.NumberIsTooLargeException Exception to be thrown when a number is too large.NumberIsTooSmallException Exception to be thrown when a number is too small.OutOfRangeException Exception to be thrown when some argument is out of range.