Class MathParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.hipparchus.exception.MathRuntimeException
-
- org.hipparchus.exception.MathIllegalStateException
-
- org.hipparchus.migration.exception.MathParseException
-
- All Implemented Interfaces:
Serializable
,LocalizedException
@Deprecated public class MathParseException extends MathIllegalStateException
Deprecated.as of 1.0, this exception is replaced byMathIllegalStateException
Class to signal parse failures.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MathParseException(String wrong, int position)
Deprecated.MathParseException(String wrong, int position, Class<?> type)
Deprecated.
-
Method Summary
-
Methods inherited from class org.hipparchus.exception.MathRuntimeException
createInternalError, createInternalError, getLocalizedMessage, getMessage, getMessage, getParts, getSpecifier
-
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)
Deprecated.- 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)
Deprecated.- Parameters:
wrong
- Bad string representation of the object.position
- Index, in thewrong
string, that caused the parsing to fail.
-
-