Class CommonsException

  • All Implemented Interfaces:
    java.io.Serializable

    public class CommonsException
    extends java.lang.Exception
    Base exception class for this package. All exceptions in this package extend from this one.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      CommonsException()
      Constructor.
      CommonsException​(java.lang.String message)
      Constructor with String containing message.
      CommonsException​(java.lang.String message, java.lang.Throwable cause)
      Constructor with message and cause.
      CommonsException​(java.lang.Throwable cause)
      Constructor with cause.
    • 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

      • CommonsException

        public CommonsException()
        Constructor.
      • CommonsException

        public CommonsException​(java.lang.String message)
        Constructor with String containing message.
        Parameters:
        message - Message indicating the cause of the exception.
      • CommonsException

        public CommonsException​(java.lang.String message,
                                java.lang.Throwable cause)
        Constructor with message and cause.
        Parameters:
        message - Message describing the cause of the exception.
        cause - Instance containing the cause of the exception.
      • CommonsException

        public CommonsException​(java.lang.Throwable cause)
        Constructor with cause.
        Parameters:
        cause - Instance containing the cause of the exception.