Class BugException

  • All Implemented Interfaces:
    ErrorCodeAccessor, Trap


    public class BugException
    extends AbstractRuntimeException
    Exception bugs (unchecked). A bug exception is thrown when it surely must be a bug when reaching the place when the BugException is being thrown. Example: In case an enumeration is evaluated and an "unexpected" enumeration value is identified by the code (it does not know how to continue with that explicit enumeration value), then either the enumeration has been wrongly extended by new values or the code as not been extended to process that newly added enumeration. Her in a switch / case's "default" block you may throw a BugException.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BugException​(java.lang.String aMessage)
      Instantiates a new bug exception.
      BugException​(java.lang.String aMessage, java.lang.String aErrorCode)
      Instantiates a new bug exception.
      BugException​(java.lang.String message, java.lang.Throwable cause)
      Instantiates a new bug exception.
      BugException​(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)
      Instantiates a new bug exception.
      BugException​(java.lang.Throwable cause)
      Instantiates a new bug exception.
      BugException​(java.lang.Throwable aCause, java.lang.String aErrorCode)
      Instantiates a new bug exception.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • BugException

        public BugException​(java.lang.String aMessage)
        Instantiates a new bug exception.
        Parameters:
        aMessage - the message
      • BugException

        public BugException​(java.lang.String message,
                            java.lang.Throwable cause)
        Instantiates a new bug exception.
        Parameters:
        message - the message
        cause - the cause
      • BugException

        public BugException​(java.lang.Throwable cause)
        Instantiates a new bug exception.
        Parameters:
        cause - the cause
      • BugException

        public BugException​(java.lang.String aMessage,
                            java.lang.String aErrorCode)
        Instantiates a new bug exception.
        Parameters:
        aMessage - the message
        aErrorCode - the error code
      • BugException

        public BugException​(java.lang.String aMessage,
                            java.lang.Throwable aCause,
                            java.lang.String aErrorCode)
        Instantiates a new bug exception.
        Parameters:
        aMessage - the message
        aCause - the cause
        aErrorCode - the error code
      • BugException

        public BugException​(java.lang.Throwable aCause,
                            java.lang.String aErrorCode)
        Instantiates a new bug exception.
        Parameters:
        aCause - the cause
        aErrorCode - the error code