Home | History | Annotate | Download | only in view

Lines Matching defs:exception

102                 // If the class was not found, we throw the exception directly, because this
106 } catch (Exception e) {
107 // Wrap the real exception in a ClassNotFoundException, so that the calling method
109 ClassNotFoundException exception = new ClassNotFoundException("onCreateView", e);
110 throw exception;
127 } catch (Exception e2) {
128 // Wrap the real exception in an InflateException so that the calling
130 InflateException exception = new InflateException();
132 exception.initCause(e2);
134 exception.initCause(e);
136 throw exception;
178 } catch (Exception e) {
189 Exception{