org.dhmp.util.stylesheet
Class ParserException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.dhmp.util.stylesheet.ParserException
All Implemented Interfaces:
java.io.Serializable

public class ParserException
extends java.lang.RuntimeException

Thrown when template contains syntax error.

See Also:
Serialized Form

Constructor Summary
ParserException()
          Constructs a ParserException with no detail message.
ParserException(java.lang.String message)
          Constructs a ParserException with the specified detail message.
ParserException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
ParserException(java.lang.Throwable cause)
          Constructs a ParserException wrapping other exceptions.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ParserException

public ParserException(java.lang.String message)
Constructs a ParserException with the specified detail message.

Parameters:
message - the detail message

ParserException

public ParserException()
Constructs a ParserException with no detail message.


ParserException

public ParserException(java.lang.Throwable cause)
Constructs a ParserException wrapping other exceptions.


ParserException

public ParserException(java.lang.String message,
                       java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message.
cause - the cause.