org.parboiled.errors
Class ParsingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.parboiled.errors.ParsingException
All Implemented Interfaces:
java.io.Serializable

public class ParsingException
extends java.lang.RuntimeException

Exception type not directly used by parboiled but included as a convenience base class for custom exceptions (or to be used directly if no custom exception types are required).

See Also:
Serialized Form

Constructor Summary
ParsingException()
           
ParsingException(java.lang.String message)
           
ParsingException(java.lang.String message, java.lang.Object... messageArgs)
           
ParsingException(java.lang.String message, java.lang.Throwable cause)
           
ParsingException(java.lang.Throwable cause)
           
ParsingException(java.lang.Throwable cause, java.lang.String message, java.lang.Object... messageArgs)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ParsingException

public ParsingException()

ParsingException

public ParsingException(java.lang.String message)

ParsingException

public ParsingException(java.lang.String message,
                        java.lang.Throwable cause)

ParsingException

public ParsingException(java.lang.String message,
                        java.lang.Object... messageArgs)

ParsingException

public ParsingException(java.lang.Throwable cause,
                        java.lang.String message,
                        java.lang.Object... messageArgs)

ParsingException

public ParsingException(java.lang.Throwable cause)