Searched refs:typeLoadingException (Results 1 - 1 of 1) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DRobolectricInternals.java50 } catch (TypeNotPresentException typeLoadingException) {
52 if (isIgnorableClassLoadingException(typeLoadingException)) {
58 throw typeLoadingException;
63 private static boolean isIgnorableClassLoadingException(Throwable typeLoadingException) { argument
64 if (typeLoadingException != null) {
66 if (typeLoadingException.getClass().getName().equals(IgnorableClassNotFoundException.class.getName())) {
70 if (typeLoadingException instanceof NoClassDefFoundError
71 || typeLoadingException instanceof ClassNotFoundException
72 || typeLoadingException instanceof TypeNotPresentException) {
73 return isIgnorableClassLoadingException(typeLoadingException
[all...]

Completed in 113 milliseconds