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"

UML Diagram for "org.tquadrat.foundation.exception.UnsupportedEnumError"

UML Diagram for "org.tquadrat.foundation.exception.UnsupportedEnumError"
  • Field Details

  • Constructor Details

    • UnsupportedEnumError

      public UnsupportedEnumError(T value)
      Creates a new instance of this class.
      Type Parameters:
      T - The type of the enum.
      Parameters:
      value - The unsupported value.
    • UnsupportedEnumError

      public UnsupportedEnumError(Class<? extends Enum<?>> type, String value)
      Creates a new instance of this class.
      Parameters:
      type - The class of the enum.
      value - The unsupported value.