/**@class java.lang.EnumConstantNotPresentException
@extends java.lang.RuntimeException

 Thrown if an {@code enum} constant does not exist for a particular name.

 @since 1.5
*/
var EnumConstantNotPresentException = {

/**Gets the enum type for which the constant name is missing.
@return {Object {java.lang.Class}} the enum type for which a constant name has not been found.
*/
enumType : function(  ) {},

/**Gets the name of the missing constant.
@return {String} the name of the constant that has not been found in the enum
         type.
*/
constantName : function(  ) {},


};