Class BugException

java.lang.Object
All Implemented Interfaces:
Serializable, ErrorCodeAccessor, Trap
Direct Known Subclasses:
UnhandledEnumBugException, UnhandledValueBugException

public class BugException extends AbstractRuntimeException
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: