HomeSort by relevance Sort by last modified time
    Searched refs:ClassNotFoundException (Results 1 - 25 of 981) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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) {
  /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) {
  /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-check/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...]
  /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...]
  /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 28 catch (ClassNotFoundException expected) {
35 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) {
  /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)
GCThreadLeakPreventer.java 54 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) {
  /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) {
  /external/jetty/src/java/org/eclipse/jetty/webapp/
Descriptor.java 39 throws ClassNotFoundException;
42 throws ClassNotFoundException;
  /frameworks/base/core/java/com/android/internal/policy/
PhoneLayoutInflater.java 55 @Override protected View onCreateView(String name, AttributeSet attrs) throws ClassNotFoundException {
62 } 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);

Completed in 1650 milliseconds

1 2 3 4 5 6 7 8 91011>>