Uses of Interface
org.apache.commons.math.exception.MathThrowable
-
Packages that use MathThrowable Package Description org.apache.commons.math Common classes used throughout the commons-math library.org.apache.commons.math.estimation This package provided classes to solve estimation problems, it is deprecated since 2.0.org.apache.commons.math.exception Specialized exceptions for algorithms errors.org.apache.commons.math.fraction Fraction number type and fraction number formatting.org.apache.commons.math.geometry This package provides basic 3D geometry components.org.apache.commons.math.linear Linear algebra support.org.apache.commons.math.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math.ode.events This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration.org.apache.commons.math.optimization This package provides common interfaces for the optimization algorithms provided in sub-packages.org.apache.commons.math.optimization.linear This package provides optimization algorithms for linear constrained problems. -
-
Uses of MathThrowable in org.apache.commons.math
Classes in org.apache.commons.math that implement MathThrowable Modifier and Type Class Description class
ArgumentOutsideDomainException
Error thrown when a method is called with an out of bounds argument.class
ConvergenceException
Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.class
DimensionMismatchException
Deprecated.in 2.2 (to be removed in 3.0).class
DuplicateSampleAbscissaException
Exception thrown when a sample contains several entries at the same abscissa.class
FunctionEvaluationException
Exception thrown when an error occurs evaluating a function.class
MathConfigurationException
Signals a configuration problem with any of the factory methods.class
MathException
Base class for commons-math checked exceptions.class
MathRuntimeException
Base class for commons-math unchecked exceptions.class
MaxEvaluationsExceededException
Error thrown when a numerical computation exceeds its allowed number of functions evaluations.class
MaxIterationsExceededException
Error thrown when a numerical computation exceeds its allowed number of iterations. -
Uses of MathThrowable in org.apache.commons.math.estimation
Classes in org.apache.commons.math.estimation that implement MathThrowable Modifier and Type Class Description class
EstimationException
Deprecated.as of 2.0, everything in package org.apache.commons.math.estimation has been deprecated and replaced by package org.apache.commons.math.optimization.general -
Uses of MathThrowable in org.apache.commons.math.exception
Classes in org.apache.commons.math.exception that implement MathThrowable Modifier and Type Class Description class
ConvergenceException
Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.class
DimensionMismatchException
Exception to be thrown when two dimensions differ.class
MathIllegalArgumentException
Base class for all preconditions violation exceptions.class
MathIllegalNumberException
Base class for exceptions raised by a wrong number.class
MathIllegalStateException
Base class for all exceptions that signal a mismatch between the current state and the user's expectations.class
MathInternalError
Exception triggered when something that shouldn't happen does happen.class
MathUnsupportedOperationException
Base class for all unsupported features.class
NoDataException
Exception to be thrown when the required data is missing.class
NonMonotonousSequenceException
Exception to be thrown when the a sequence of values is not monotonously increasing or decreasing.class
NotPositiveException
Exception to be thrown when the argument is negative.class
NotStrictlyPositiveException
Exception to be thrown when the argument is negative.class
NullArgumentException
All conditions checks that fail due to anull
argument must throw this exception.class
NumberIsTooLargeException
Exception to be thrown when a number is too large.class
NumberIsTooSmallException
Exception to be thrown when a number is too small.class
OutOfRangeException
Exception to be thrown when some argument is out of range.class
ZeroException
Exception to be thrown when zero is provided where it is not allowed. -
Uses of MathThrowable in org.apache.commons.math.fraction
Classes in org.apache.commons.math.fraction that implement MathThrowable Modifier and Type Class Description class
FractionConversionException
Error thrown when a double value cannot be converted to a fraction in the allowed number of iterations. -
Uses of MathThrowable in org.apache.commons.math.geometry
Classes in org.apache.commons.math.geometry that implement MathThrowable Modifier and Type Class Description class
CardanEulerSingularityException
This class represents exceptions thrown while extractiong Cardan or Euler angles from a rotation.class
NotARotationMatrixException
This class represents exceptions thrown while building rotations from matrices. -
Uses of MathThrowable in org.apache.commons.math.linear
Classes in org.apache.commons.math.linear that implement MathThrowable Modifier and Type Class Description class
InvalidMatrixException
Thrown when a system attempts an operation on a matrix, and that matrix does not satisfy the preconditions for the aforementioned operation.class
MatrixIndexException
Thrown when an operation addresses a matrix coordinate (row, col) which is outside of the dimensions of a matrix.class
MatrixVisitorException
Thrown when a visitor encounters an error while processing a matrix entry.class
NonSquareMatrixException
Thrown when an operation defined only for square matrices is applied to non-square ones.class
NotPositiveDefiniteMatrixException
This class represents exceptions thrown when a matrix expected to be positive definite is not.class
NotSymmetricMatrixException
This class represents exceptions thrown when a matrix expected to be symmetric is notclass
SingularMatrixException
Thrown when a matrix is singular. -
Uses of MathThrowable in org.apache.commons.math.ode
Classes in org.apache.commons.math.ode that implement MathThrowable Modifier and Type Class Description class
DerivativeException
This exception is made available to users to report the error conditions that are triggered while computing the differential equations.class
IntegratorException
This exception is made available to users to report the error conditions that are triggered during integration -
Uses of MathThrowable in org.apache.commons.math.ode.events
Classes in org.apache.commons.math.ode.events that implement MathThrowable Modifier and Type Class Description class
EventException
This exception is made available to users to report the error conditions that are triggered byEventHandler
-
Uses of MathThrowable in org.apache.commons.math.optimization
Classes in org.apache.commons.math.optimization that implement MathThrowable Modifier and Type Class Description class
OptimizationException
Deprecated.in 2.2 (to be removed in 3.0). -
Uses of MathThrowable in org.apache.commons.math.optimization.linear
Classes in org.apache.commons.math.optimization.linear that implement MathThrowable Modifier and Type Class Description class
NoFeasibleSolutionException
This class represents exceptions thrown by optimizers when no solution fulfills the constraints.class
UnboundedSolutionException
This class represents exceptions thrown by optimizers when a solution escapes to infinity.
-