Module org.tquadrat.foundation.base
Class UnsupportedEnumError
java.lang.Object
java.lang.Throwable
java.lang.Error
org.tquadrat.foundation.exception.UnsupportedEnumError
- All Implemented Interfaces:
Serializable
@ClassVersion(sourceVersion="$Id: UnsupportedEnumError.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public final class UnsupportedEnumError
extends Error
This is a specialized implementation for
Error
that is to be thrown especially from the default
branch of a
switch
statement that uses an enum
type as selector.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: UnsupportedEnumError.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.5
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.exception.UnsupportedEnumError"
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUnsupportedEnumError
(Class<? extends Enum<?>> type, String value) Creates a new instance of this class.UnsupportedEnumError
(T value) Creates a new instance of this class. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
MSG_UnsupportedEnum
The message text.- See Also:
-
-
Constructor Details
-
UnsupportedEnumError
Creates a new instance of this class.- Type Parameters:
T
- The type of the enum.- Parameters:
value
- The unsupported value.
-
UnsupportedEnumError
Creates a new instance of this class.- Parameters:
type
- The class of the enum.value
- The unsupported value.
-