Class BeanException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BeanClassScanException, BeanCreationException, BeanInstantiationException, BeanProxyException, NoSuchBeanException, NoUniqueBeanException, UnsupportedBeanScopeException

public class BeanException extends RuntimeException
This class is the basic exception that gets thrown from the bean package.

Created: 2008. 01. 07 AM 3:35:55

See Also:
  • Constructor Details

    • BeanException

      public BeanException()
      Creates a new BeanException without detail message.
    • BeanException

      public BeanException(String msg)
      Constructs a BeanException with the specified detail message.
      Parameters:
      msg - the detail message
    • BeanException

      public BeanException(Throwable cause)
      Constructor to create exception to wrap another exception.
      Parameters:
      cause - the real cause of the exception
    • BeanException

      public BeanException(String msg, Throwable cause)
      Constructs a BeanException with the specified error message and also the specified root cause exception.
      Parameters:
      msg - the detail message
      cause - the real cause of the exception