Class BeanException

    • Constructor Summary

      Constructors 
      Constructor Description
      BeanException()
      Creates a new BeanException without detail message.
      BeanException​(java.lang.String msg)
      Constructs a BeanException with the specified detail message.
      BeanException​(java.lang.String msg, java.lang.Throwable cause)
      Constructs a BeanException with the specified error message and also the specified root cause exception.
      BeanException​(java.lang.Throwable cause)
      Constructor to create exception to wrap another exception.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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()
        Creates a new BeanException without detail message.
      • BeanException

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

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

        public BeanException​(java.lang.String msg,
                             java.lang.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