Searched defs:throwable (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/
H A DInflateException.java28 public InflateException(String detailMessage, Throwable throwable) { argument
29 super(detailMessage, throwable);
36 public InflateException(Throwable throwable) { argument
37 super(throwable);
/frameworks/base/core/tests/coretests/src/android/animation/
H A DFutureWaiter.java44 public boolean setException(Throwable throwable) { argument
45 return super.setException(throwable);
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiObjectNotFoundException.java38 public UiObjectNotFoundException(String detailMessage, Throwable throwable) { argument
39 super(detailMessage, throwable);
45 public UiObjectNotFoundException(Throwable throwable) { argument
46 super(throwable);
/frameworks/uiautomator/core/com/android/uiautomator/core/
H A DUiObjectNotFoundException.java38 public UiObjectNotFoundException(String detailMessage, Throwable throwable) { argument
39 super(detailMessage, throwable);
45 public UiObjectNotFoundException(Throwable throwable) { argument
46 super(throwable);
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnectorException.java33 public NativeDaemonConnectorException(String detailMessage, Throwable throwable) { argument
34 super(detailMessage, throwable);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java1124 private void throwSipException(Throwable throwable) throws SipException { argument
1125 if (throwable instanceof SipException) {
1126 throw (SipException) throwable;
1128 throw new SipException("", throwable);

Completed in 591 milliseconds