/external/junit/src/junit/runner/ |
TestSuiteLoader.java | 9 abstract public Class load(String suiteClassName) throws ClassNotFoundException; 10 abstract public Class reload(Class aClass) throws ClassNotFoundException;
|
StandardTestSuiteLoader.java | 14 public Class load(String suiteClassName) throws ClassNotFoundException { 20 public Class reload(Class aClass) throws ClassNotFoundException {
|
/libcore/luni/src/main/java/java/lang/ |
ClassNotFoundException.java | 23 public class ClassNotFoundException extends ReflectiveOperationException { 30 * Constructs a new {@code ClassNotFoundException} that includes the current 33 public ClassNotFoundException() { 38 * Constructs a new {@code ClassNotFoundException} with the current stack 44 public ClassNotFoundException(String detailMessage) { 49 * Constructs a new {@code ClassNotFoundException} with the current stack 58 public ClassNotFoundException(String detailMessage, Throwable exception) {
|
/external/javassist/src/main/javassist/runtime/ |
DotClass.java | 25 public static NoClassDefFoundError fail(ClassNotFoundException e) {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ClassNotFoundExceptionTest.java | 31 * @tests java.lang.ClassNotFoundException#ClassNotFoundException() 34 ClassNotFoundException e = new ClassNotFoundException(); 41 * @tests java.lang.ClassNotFoundException#ClassNotFoundException(java.lang.String) 44 ClassNotFoundException e = new ClassNotFoundException("fixture"); 50 * @tests java.lang.ClassNotFoundException#ClassNotFoundException(java.lang.String, java.lang.Throwable [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
ClassNotFoundExceptionTest.java | 27 } catch (ClassNotFoundException ex) { 36 } catch (ClassNotFoundException ex) { 45 } catch (ClassNotFoundException ex) {
|
/art/test/068-classloader/src/ |
FancyLoader.java | 57 } catch (ClassNotFoundException cnfe) { 68 protected Class<?> findClass(String name) throws ClassNotFoundException 81 throws ClassNotFoundException { 92 throw new ClassNotFoundException("getConstructor failed", 99 throw new ClassNotFoundException("newInstance failed", ie); 101 throw new ClassNotFoundException("newInstance failed", iae); 103 throw new ClassNotFoundException("newInstance failed", ite); 117 throw new ClassNotFoundException("getMethod failed", nsme); 123 throw new ClassNotFoundException("loadClass failed", iae); 125 throw new ClassNotFoundException("loadClass failed" [all...] |
/dalvik/tests/068-classloader/src/ |
FancyLoader.java | 57 } catch (ClassNotFoundException cnfe) { 68 protected Class<?> findClass(String name) throws ClassNotFoundException 81 throws ClassNotFoundException { 92 throw new ClassNotFoundException("getConstructor failed", 99 throw new ClassNotFoundException("newInstance failed", ie); 101 throw new ClassNotFoundException("newInstance failed", iae); 103 throw new ClassNotFoundException("newInstance failed", ite); 117 throw new ClassNotFoundException("getMethod failed", nsme); 123 throw new ClassNotFoundException("loadClass failed", iae); 125 throw new ClassNotFoundException("loadClass failed" [all...] |
/libcore/luni/src/main/java/java/io/ |
Externalizable.java | 32 * @throws ClassNotFoundException 36 ClassNotFoundException;
|
ObjectInput.java | 83 * @throws ClassNotFoundException 88 public Object readObject() throws ClassNotFoundException, IOException;
|
/frameworks/base/test-runner/src/junit/runner/ |
ReloadingTestSuiteLoader.java | 9 public Class load(String suiteClassName) throws ClassNotFoundException { 13 public Class reload(Class aClass) throws ClassNotFoundException {
|
LoadingTestCollector.java | 29 catch (ClassNotFoundException expected) { 36 Class classFromFile(String classFileName) throws ClassNotFoundException {
|
/cts/tools/vm-tests-tf/src/dot/junit/ |
DxUtil.java | 24 * whether in case of a failure, also ClassNotFoundException is accepted. 46 // in case we are testing the dalvik, we also accept a ClassNotFoundException, 52 (isDalvik && t instanceof ClassNotFoundException) || 62 if (t instanceof VerifyError || t instanceof java.lang.IncompatibleClassChangeError ||t instanceof ClassNotFoundException) {
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
ParserFactory.java | 65 * @exception java.lang.ClassNotFoundException The SAX parser 79 throws ClassNotFoundException, 104 * @exception java.lang.ClassNotFoundException The SAX parser 118 throws ClassNotFoundException,
|
/art/test/003-omnibus-opcodes/src/ |
UnresTest2.java | 36 Main.assertTrue(ncdfe.getCause() instanceof ClassNotFoundException); 44 Main.assertTrue(ncdfe.getCause() instanceof ClassNotFoundException); 52 Main.assertTrue(ncdfe.getCause() instanceof ClassNotFoundException);
|
/libcore/luni/src/test/java/libcore/java/text/ |
AttributedCharacterIteratorAttributeTest.java | 33 public void testSerialization() throws IOException, ClassNotFoundException { 40 public void testSerializingSubclass() throws IOException, ClassNotFoundException { 49 private void assertSameReserialized(Object o) throws ClassNotFoundException, IOException {
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
EnumMemberValue.java | 59 throws ClassNotFoundException 65 throw new ClassNotFoundException(getType() + "." + getValue()); 68 throw new ClassNotFoundException(getType() + "." + getValue()); 72 Class getType(ClassLoader cl) throws ClassNotFoundException {
|
AnnotationMemberValue.java | 48 throws ClassNotFoundException 53 Class getType(ClassLoader cl) throws ClassNotFoundException { 55 throw new ClassNotFoundException("no type specified");
|
MemberValue.java | 47 throws ClassNotFoundException; 49 abstract Class getType(ClassLoader cl) throws ClassNotFoundException; 52 throws ClassNotFoundException, NoSuchClassError
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
ParserFactoryTest.java | 30 public void testMakeParser() throws ClassNotFoundException, 48 fail("expected ClassNotFoundException was not thrown"); 49 } catch (ClassNotFoundException e) { 94 public void testMakeParserString() throws ClassNotFoundException, 107 fail("expected ClassNotFoundException was not thrown"); 108 } catch (ClassNotFoundException e) {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
AndroidDigestFactory.java | 38 } catch (ClassNotFoundException e1) { 41 } catch (ClassNotFoundException e2) {
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
PhoneLayoutInflater.java | 53 @Override protected View onCreateView(String name, AttributeSet attrs) throws ClassNotFoundException { 60 } catch (ClassNotFoundException e) {
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/ |
ParserLoader.java | 47 public ParserLoader(String grammarName, String classDir) throws IOException, ClassNotFoundException { 81 throw new ClassNotFoundException(lexerName + " not found."); 89 public synchronized Class loadClass(String name, boolean resolve) throws ClassNotFoundException { 97 throw new ClassNotFoundException(name);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/ |
RobolectricTestRunnerClassLoaderSetup.java | 14 public void testUsingClassLoader() throws ClassNotFoundException {
|
/external/javassist/sample/evolve/ |
VersionManager.java | 26 catch (ClassNotFoundException e) {
36 throws ClassNotFoundException {
57 catch (ClassNotFoundException e) {
|