/* * @(#)EnumConstantNotPresentException.java 1.1 04/02/03 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.lang; /** * Thrown when an application tries to access an enum constant by name * and the enum type contains no constant with the specified name. * * @author Josh Bloch * @since 1.5 */ public class EnumConstantNotPresentException extends RuntimeException { /** * The type of the missing enum constant. */ private Class enumType; /** * The name of the missing enum constant. */ private String constantName; /** * Constructs an EnumConstantNotPresentException for the * specified constant. * * @param enumType the type of the missing enum constant * @param constantName the name of the missing enum constant */ public EnumConstantNotPresentException(Class enumType, String constantName) { super(enumType.getName() + "." + constantName); this.enumType = enumType; this.constantName = constantName; } /** * Returns the type of the missing enum constant. * * @return the type of the missing enum constant */ public Class enumType() { return enumType; } /** * Returns the name of the missing enum constant. * * @return the name of the missing enum constant */ public String constantName() { return constantName; } }