org.apache.commons.math3.exception
Class MathParseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalStateException
                  extended by org.apache.commons.math3.exception.MathIllegalStateException
                      extended by org.apache.commons.math3.exception.MathParseException
All Implemented Interfaces:
Serializable, ExceptionContextProvider

public class MathParseException
extends MathIllegalStateException
implements ExceptionContextProvider

Class to signal parse failures.

Since:
2.2
Version:
$Id$
See Also:
Serialized Form

Field Summary
private static long serialVersionUID
          Serializable version Id.
 
Constructor Summary
MathParseException(String wrong, int position)
           
MathParseException(String wrong, int position, Class<?> type)
           
 
Method Summary
 
Methods inherited from class org.apache.commons.math3.exception.MathIllegalStateException
getContext, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.apache.commons.math3.exception.util.ExceptionContextProvider
getContext
 

Field Detail

serialVersionUID

private static final long serialVersionUID
Serializable version Id.

See Also:
Constant Field Values
Constructor Detail

MathParseException

public MathParseException(String wrong,
                          int position,
                          Class<?> type)
Parameters:
wrong - Bad string representation of the object.
position - Index, in the wrong string, that caused the parsing to fail.
type - Class of the object supposedly represented by the wrong string.

MathParseException

public MathParseException(String wrong,
                          int position)
Parameters:
wrong - Bad string representation of the object.
position - Index, in the wrong string, that caused the parsing to fail.


Copyright (c) 2003-2013 Apache Software Foundation