/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 {
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/lang/ |
ClassNotFoundException.java | 2 * @(#)ClassNotFoundException.java 1.20 04/02/19
31 public class ClassNotFoundException extends Exception {
35 /** This field holds the exception ex if the ClassNotFoundException(String s, Throwable ex) constructor was used to instantiate
41 /** Constructs a <code>ClassNotFoundException</code> with no detail message. */
42 public ClassNotFoundException () {
46 /** Constructs a <code>ClassNotFoundException</code> with the specified detail message.
49 public ClassNotFoundException (String s) {
53 /** Constructs a <code>ClassNotFoundException</code> with the specified detail message and optional exception that was raised
59 public ClassNotFoundException (String s, Throwable ex) {
|
/libcore/ojluni/src/main/java/java/lang/ |
ClassNotFoundException.java | 53 public class ClassNotFoundException extends ReflectiveOperationException { 61 * ClassNotFoundException(String s, Throwable ex) constructor was 69 * Constructs a <code>ClassNotFoundException</code> with no detail message. 71 public ClassNotFoundException() { 76 * Constructs a <code>ClassNotFoundException</code> with the 81 public ClassNotFoundException(String s) { 86 * Constructs a <code>ClassNotFoundException</code> with the 94 public ClassNotFoundException(String s, Throwable ex) {
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
PackageCompactConstructorTest.java | 22 public void testGetClassForName() throws ClassNotFoundException { 28 public void testException1() throws ClassNotFoundException { 32 } catch (ClassNotFoundException e) { 37 public void testException2() throws ClassNotFoundException { 41 } catch (ClassNotFoundException e) { 46 private Class<?> check(String name) throws ClassNotFoundException {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ClassNotFoundExceptionTest.java | 31 * java.lang.ClassNotFoundException#ClassNotFoundException() 34 ClassNotFoundException e = new ClassNotFoundException(); 41 * java.lang.ClassNotFoundException#ClassNotFoundException(java.lang.String) 44 ClassNotFoundException e = new ClassNotFoundException("fixture"); 50 * java.lang.ClassNotFoundException#ClassNotFoundException(java.lang.String, java.lang.Throwable [all...] |
/external/javassist/src/main/javassist/runtime/ |
DotClass.java | 25 public static NoClassDefFoundError fail(ClassNotFoundException e) {
|
/external/testng/src/main/java/org/testng/internal/ |
Dynamic.java | 12 } catch (ClassNotFoundException e) {
|
/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...] |
/art/test/138-duplicate-classes-check2/src/ |
FancyLoader.java | 58 } catch (ClassNotFoundException cnfe) { 69 protected Class<?> findClass(String name) throws ClassNotFoundException 82 throws ClassNotFoundException { 93 throw new ClassNotFoundException("getConstructor failed", 100 throw new ClassNotFoundException("newInstance failed", ie); 102 throw new ClassNotFoundException("newInstance failed", iae); 104 throw new ClassNotFoundException("newInstance failed", ite); 118 throw new ClassNotFoundException("getMethod failed", nsme); 124 throw new ClassNotFoundException("loadClass failed", iae); 126 throw new ClassNotFoundException("loadClass failed" [all...] |
/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 {
|
/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) {
|
/external/jetty/src/java/org/eclipse/jetty/util/preventers/ |
Java2DLeakPreventer.java | 43 catch (ClassNotFoundException e)
|
LDAPLeakPreventer.java | 45 catch (ClassNotFoundException e)
|
LoginConfigurationLeakPreventer.java | 43 catch (ClassNotFoundException e)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/ |
PackageCompactConstructor.java | 26 protected Class<?> getClassForName(String name) throws ClassNotFoundException { 31 } catch (ClassNotFoundException e) {
|
/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,
|
/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 {
|
/dalvik/dx/tests/125-main-dex-list/com/android/dx/multidex/ |
MainDexListTest.java | 39 } catch (ClassNotFoundException e) { 45 } catch (ClassNotFoundException e) {
|
/cts/tests/tests/security/src/android/security/cts/ |
ActivityManagerTest.java | 29 public void testActivityManager_injectInputEvents() throws ClassNotFoundException {
|
/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 {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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) {
|
/libcore/ojluni/src/main/java/java/io/ |
Externalizable.java | 93 * @exception ClassNotFoundException If the class for an object being 96 void readExternal(ObjectInput in) throws IOException, ClassNotFoundException;
|
ObjectInput.java | 45 * @exception java.lang.ClassNotFoundException If the class of a serialized 51 throws ClassNotFoundException, IOException;
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
Descriptor.java | 39 throws ClassNotFoundException; 42 throws ClassNotFoundException;
|