- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.EnumConstantNotPresentException
-
- 实现的所有接口
-
Serializable
public class EnumConstantNotPresentException extends RuntimeException
当应用程序尝试按名称访问枚举常量并且枚举类型不包含具有指定名称的常量时抛出。 API used to read annotations reflectively可以抛出此异常。- 从以下版本开始:
- 1.5
- 另请参见:
-
AnnotatedElement
, Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 EnumConstantNotPresentException(类<? extends Enum> enumType, String constantName)
为指定的常量构造一个EnumConstantNotPresentException
。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 String
constantName()
返回缺少的枚举常量的名称。类<? extends Enum>
enumType()
返回缺少的枚举常量的类型。
-