Constructs a new {@code EnumConstantNotPresentException} with the current
stack trace and a detail message based on the specified enum type and
missing constant name.
// luni.03=The enum constant {0}.{1} is missing
super(Msg.getString("luni.03", enumType.getName(), constantName)); //$NON-NLS-1$
this.enumType = enumType;
this.constantName = constantName;