Searched refs:EnumConstantNotPresentException (Results 1 – 6 of 6) sorted by relevance
29 new EnumConstantNotPresentException(null, ""); in test_ConstructorLjava_lang_ClassLjava_lang_String()36 … EnumConstantNotPresentException e = new EnumConstantNotPresentException(Fixture.class, "FOUR"); in test_enumType()41 … EnumConstantNotPresentException e = new EnumConstantNotPresentException(Fixture.class, "FOUR"); in test_constantName()
40 public class EnumConstantNotPresentException extends RuntimeException { class61 public EnumConstantNotPresentException(Class<? extends Enum> enumType, in EnumConstantNotPresentException() method in EnumConstantNotPresentException
299 } else if (value instanceof EnumConstantNotPresentException) { in rethrowError()300 EnumConstantNotPresentException ecnpe = (EnumConstantNotPresentException)value; in rethrowError()301 throw new EnumConstantNotPresentException(ecnpe.enumType(), ecnpe.constantName()); in rethrowError()
141 "ojluni/src/main/java/java/lang/EnumConstantNotPresentException.java",
148 …va/java/lang/EnumConstantNotPresentException.java,jdk21u/jdk-21.0.4-ga,src/java.base/share/classes…
3414 public class EnumConstantNotPresentException extends java.lang.RuntimeException {3415 ctor public EnumConstantNotPresentException(Class<? extends java.lang.Enum>, String);