Home
last modified time | relevance | path

Searched refs:EnumConstantNotPresentException (Results 1 – 6 of 6) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DEnumConstantNotPresentExceptionTest.java29 new EnumConstantNotPresentException(null, ""); in test_ConstructorLjava_lang_ClassLjava_lang_String()
36EnumConstantNotPresentException e = new EnumConstantNotPresentException(Fixture.class, "FOUR"); in test_enumType()
41EnumConstantNotPresentException e = new EnumConstantNotPresentException(Fixture.class, "FOUR"); in test_constantName()
/libcore/ojluni/src/main/java/java/lang/
DEnumConstantNotPresentException.java40 public class EnumConstantNotPresentException extends RuntimeException { class
61 public EnumConstantNotPresentException(Class<? extends Enum> enumType, in EnumConstantNotPresentException() method in EnumConstantNotPresentException
/libcore/luni/src/main/java/libcore/reflect/
DAnnotationMember.java299 } else if (value instanceof EnumConstantNotPresentException) { in rethrowError()
300 EnumConstantNotPresentException ecnpe = (EnumConstantNotPresentException)value; in rethrowError()
301 throw new EnumConstantNotPresentException(ecnpe.enumType(), ecnpe.constantName()); in rethrowError()
/libcore/
Dopenjdk_java_files.bp141 "ojluni/src/main/java/java/lang/EnumConstantNotPresentException.java",
DEXPECTED_UPSTREAM148 …va/java/lang/EnumConstantNotPresentException.java,jdk21u/jdk-21.0.4-ga,src/java.base/share/classes…
/libcore/api/
Dcurrent.txt3414 public class EnumConstantNotPresentException extends java.lang.RuntimeException {
3415 ctor public EnumConstantNotPresentException(Class<? extends java.lang.Enum>, String);