Class ZeroException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.math4.exception.MathRuntimeException
org.apache.commons.math4.exception.MathIllegalArgumentException
org.apache.commons.math4.exception.MathIllegalNumberException
org.apache.commons.math4.exception.ZeroException
- All Implemented Interfaces:
java.io.Serializable,ExceptionContextProvider
public class ZeroException extends MathIllegalNumberException
Exception to be thrown when zero is provided where it is not allowed.
- Since:
- 2.2
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from class org.apache.commons.math4.exception.MathIllegalNumberException
INTEGER_ZERO -
Constructor Summary
Constructors Constructor Description ZeroException()Construct the exception.ZeroException(Localizable specific, java.lang.Object... arguments)Construct the exception with a specific context. -
Method Summary
Methods inherited from class org.apache.commons.math4.exception.MathIllegalNumberException
getArgumentMethods inherited from class org.apache.commons.math4.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Constructor Details
-
ZeroException
public ZeroException()Construct the exception. -
ZeroException
Construct the exception with a specific context.- Parameters:
specific- Specific context pattern.arguments- Arguments.
-