org.jplate.foundation.parser
Class JPlateBuildingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jplate.JPlateException
              extended by org.jplate.foundation.FoundationException
                  extended by org.jplate.foundation.gof.GOFException
                      extended by org.jplate.foundation.gof.builder.BuildException
                          extended by org.jplate.foundation.parser.JPlateBuildingException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FieldCountMismatchException

public class JPlateBuildingException
extends BuildException

Thrown when there are problems building objects.

Modifications:
    $Date: 2008-12-02 12:32:45 -0500 (Tue, 02 Dec 2008) $
    $Revision: 479 $
    $Author: sfloess $
    $HeadURL: https://jplate.svn.sourceforge.net/svnroot/jplate/trunk/src/dev/java/org/jplate/foundation/parser/JPlateBuildingException.java $
    

See Also:
Serialized Form

Constructor Summary
JPlateBuildingException()
          Default constructor.
JPlateBuildingException(java.lang.String msg)
          This constructor sets the message.
JPlateBuildingException(java.lang.String msg, java.lang.Throwable rootCause)
          This constructor sets the message and root cause.
JPlateBuildingException(java.lang.Throwable rootCause)
          This constructor sets the root cause and the node that caused self to be raised.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JPlateBuildingException

public JPlateBuildingException()
Default constructor.


JPlateBuildingException

public JPlateBuildingException(java.lang.String msg)
This constructor sets the message.

Parameters:
msg - A message about why self was raised.

JPlateBuildingException

public JPlateBuildingException(java.lang.Throwable rootCause)
This constructor sets the root cause and the node that caused self to be raised.

Parameters:
rootCause - The exception that caused self to be raised.

JPlateBuildingException

public JPlateBuildingException(java.lang.String msg,
                               java.lang.Throwable rootCause)
This constructor sets the message and root cause.

Parameters:
msg - A message about why self was raised.
rootCause - The exception that caused self to be raised.