Class ParseException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class ParseException
    extends java.lang.Exception
    An exception thrown when a parsing error occurs.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ParseException()
      Creates a new ParseException.
      ParseException​(java.lang.String msg)
      Creates a new ParseException.
      ParseException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new ParseException.
      ParseException​(java.lang.Throwable ex)
      Creates a new ParseException.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ParseException

        public ParseException()
        Creates a new ParseException.
      • ParseException

        public ParseException​(java.lang.String msg)
        Creates a new ParseException.
        Parameters:
        msg - a message for the exception.
      • ParseException

        public ParseException​(java.lang.Throwable ex)
        Creates a new ParseException.
        Parameters:
        ex - the cause of the failure.
      • ParseException

        public ParseException​(java.lang.String msg,
                              java.lang.Throwable ex)
        Creates a new ParseException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the failure.