Class MathParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.math4.legacy.exception.MathRuntimeException
-
- org.apache.commons.math4.legacy.exception.MathIllegalStateException
-
- org.apache.commons.math4.legacy.exception.MathParseException
-
- All Implemented Interfaces:
Serializable
,ExceptionContextProvider
public class MathParseException extends MathIllegalStateException
Class to signal parse failures.- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MathParseException(String wrong, int position)
MathParseException(String wrong, int position, Class<?> type)
-
Method Summary
-
Methods inherited from class org.apache.commons.math4.legacy.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MathParseException
public MathParseException(String wrong, int position, Class<?> type)
- Parameters:
wrong
- Bad string representation of the object.position
- Index, in thewrong
string, that caused the parsing to fail.type
- Class of the object supposedly represented by thewrong
string.
-
MathParseException
public MathParseException(String wrong, int position)
- Parameters:
wrong
- Bad string representation of the object.position
- Index, in thewrong
string, that caused the parsing to fail.
-
-