vdoclet
Class GeneratorException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--vdoclet.GeneratorException
All Implemented Interfaces:
Serializable

public class GeneratorException
extends Exception

See Also:
Serialized Form

Constructor Summary
GeneratorException()
          Default constructor.
GeneratorException(String msg)
           
GeneratorException(String msg, Throwable cause)
           
GeneratorException(Throwable cause)
           
 
Method Summary
 Throwable getCause()
          Get the causing exception, if any.
 void printStackTrace()
          Print the stack trace.
 void printStackTrace(PrintStream ps)
          Print the stack trace.
 void printStackTrace(PrintWriter pw)
          Print the stack trace.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GeneratorException

public GeneratorException()
Default constructor.


GeneratorException

public GeneratorException(String msg)
Parameters:
msg - an error message

GeneratorException

public GeneratorException(String msg,
                          Throwable cause)
Parameters:
msg - an error message
cause - a wrapped exception

GeneratorException

public GeneratorException(Throwable cause)
Parameters:
cause - a wrapped exception
Method Detail

getCause

public Throwable getCause()
Get the causing exception, if any.

Overrides:
getCause in class Throwable

printStackTrace

public void printStackTrace()
Print the stack trace.

Overrides:
printStackTrace in class Throwable

printStackTrace

public void printStackTrace(PrintStream ps)
Print the stack trace.

Overrides:
printStackTrace in class Throwable
Parameters:
ps - a PrintStream to print the stack trace to.

printStackTrace

public void printStackTrace(PrintWriter pw)
Print the stack trace.

Overrides:
printStackTrace in class Throwable
Parameters:
pw - a PrintWriter to print the stack trace to.