toolbox.beangen
Class BeanException

Package class diagram package BeanException
java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by toolbox.beangen.BeanException
All Implemented Interfaces:
java.io.Serializable

public class BeanException
extends java.lang.Exception

Exception that is generated when exceptions occur during bean generation.

See Also:
Serialized Form

Constructor Summary
BeanException(java.lang.Exception ex)
          Creates a new BeanException from the given Exception.
BeanException(java.lang.String msg)
          Generates a BeanException with the given message.
 
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

BeanException

public BeanException(java.lang.Exception ex)
Creates a new BeanException from the given Exception.

Parameters:
ex - Underlying exception that occured.

BeanException

public BeanException(java.lang.String msg)
Generates a BeanException with the given message.

Parameters:
msg - String containing the exception message.