/frameworks/base/keystore/java/android/security/ |
D | KeyChainException.java | 51 public KeyChainException(String message, Throwable cause) { in KeyChainException() argument 52 super(message, cause); in KeyChainException() 62 public KeyChainException(Throwable cause) { in KeyChainException() argument 63 super((cause == null ? null : cause.toString()), cause); in KeyChainException()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipException.java | 30 public SipException(String message, Throwable cause) { in SipException() argument 32 super(message, ((cause instanceof javax.sip.SipException) in SipException() 33 && (cause.getCause() != null)) in SipException() 34 ? cause.getCause() in SipException() 35 : cause); in SipException()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
D | ReflectionUtils.java | 72 Throwable cause = throwable.getCause(); in getCause() local 73 return cause == null ? throwable : cause; in getCause() 89 public ReflectionException(String message, Throwable cause) { in ReflectionException() argument 90 super(message, cause); in ReflectionException() 93 public ReflectionException(Throwable cause) { in ReflectionException() argument 94 super(cause); in ReflectionException()
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
D | CameraRuntimeException.java | 29 public CameraRuntimeException(int problem, String message, Throwable cause) { in CameraRuntimeException() argument 30 super(message, cause); in CameraRuntimeException() 33 mCause = cause; in CameraRuntimeException() 36 public CameraRuntimeException(int problem, Throwable cause) { in CameraRuntimeException() argument 37 super(cause); in CameraRuntimeException() 39 mCause = cause; in CameraRuntimeException()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
D | CameraUtilsRuntimeExceptionTest.java | 54 Throwable cause = new IllegalStateException("For great justice"); in testCameraRuntimeException3() local 56 CameraRuntimeException runtimeExc = new CameraRuntimeException(12345, cause); in testCameraRuntimeException3() 61 assertEquals(cause, e.getCause()); in testCameraRuntimeException3() 67 Throwable cause = new IllegalStateException("For great justice"); in testCameraRuntimeException4() local 69 CameraRuntimeException runtimeExc = new CameraRuntimeException(12345, "Hello", cause); in testCameraRuntimeException4() 74 assertEquals(cause, e.getCause()); in testCameraRuntimeException4()
|
/frameworks/base/core/java/android/accounts/ |
D | OperationCanceledException.java | 25 public OperationCanceledException(String message, Throwable cause) { in OperationCanceledException() argument 26 super(message, cause); in OperationCanceledException() 28 public OperationCanceledException(Throwable cause) { in OperationCanceledException() argument 29 super(cause); in OperationCanceledException()
|
D | NetworkErrorException.java | 25 public NetworkErrorException(String message, Throwable cause) { in NetworkErrorException() argument 26 super(message, cause); in NetworkErrorException() 28 public NetworkErrorException(Throwable cause) { in NetworkErrorException() argument 29 super(cause); in NetworkErrorException()
|
D | AuthenticatorException.java | 26 public AuthenticatorException(String message, Throwable cause) { in AuthenticatorException() argument 27 super(message, cause); in AuthenticatorException() 29 public AuthenticatorException(Throwable cause) { in AuthenticatorException() argument 30 super(cause); in AuthenticatorException()
|
D | AccountsException.java | 26 public AccountsException(String message, Throwable cause) { in AccountsException() argument 27 super(message, cause); in AccountsException() 29 public AccountsException(Throwable cause) { in AccountsException() argument 30 super(cause); in AccountsException()
|
D | AccountManager.java | 1928 final Throwable cause = e.getCause(); 1929 if (cause instanceof IOException) { 1930 throw (IOException) cause; 1931 } else if (cause instanceof UnsupportedOperationException) { 1932 throw new AuthenticatorException(cause); 1933 } else if (cause instanceof AuthenticatorException) { 1934 throw (AuthenticatorException) cause; 1935 } else if (cause instanceof RuntimeException) { 1936 throw (RuntimeException) cause; 1937 } else if (cause instanceof Error) { [all …]
|
/frameworks/base/core/java/android/util/ |
D | AndroidRuntimeException.java | 30 public AndroidRuntimeException(String name, Throwable cause) { in AndroidRuntimeException() argument 31 super(name, cause); in AndroidRuntimeException() 34 public AndroidRuntimeException(Exception cause) { in AndroidRuntimeException() argument 35 super(cause); in AndroidRuntimeException()
|
D | AndroidException.java | 30 public AndroidException(String name, Throwable cause) { in AndroidException() argument 31 super(name, cause); in AndroidException() 34 public AndroidException(Exception cause) { in AndroidException() argument 35 super(cause); in AndroidException()
|
/frameworks/opt/telephony/src/java/com/google/android/mms/ |
D | MmsException.java | 47 public MmsException(Throwable cause) { in MmsException() argument 48 super(cause); in MmsException() 57 public MmsException(String message, Throwable cause) { in MmsException() argument 58 super(message, cause); in MmsException()
|
/frameworks/base/core/java/android/content/ |
D | OperationApplicationException.java | 34 public OperationApplicationException(String message, Throwable cause) { in OperationApplicationException() argument 35 super(message, cause); in OperationApplicationException() 38 public OperationApplicationException(Throwable cause) { in OperationApplicationException() argument 39 super(cause); in OperationApplicationException()
|
/frameworks/base/core/java/android/hardware/camera2/legacy/ |
D | LegacyExceptionUtils.java | 38 public BufferQueueAbandonedException(String name, Throwable cause) { in BufferQueueAbandonedException() argument 39 super(name, cause); in BufferQueueAbandonedException() 42 public BufferQueueAbandonedException(Exception cause) { in BufferQueueAbandonedException() argument 43 super(cause); in BufferQueueAbandonedException()
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | CameraAccessException.java | 121 public CameraAccessException(@AccessError int problem, String message, Throwable cause) { in CameraAccessException() argument 122 super(message, cause); in CameraAccessException() 126 public CameraAccessException(@AccessError int problem, Throwable cause) { in CameraAccessException() argument 127 super(getDefaultMessage(problem), cause); in CameraAccessException() local
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
D | CdmaInformationRecords.java | 232 public byte cause; field in CdmaInformationRecords.CdmaT53ClirInfoRec 234 public CdmaT53ClirInfoRec(int cause) { in CdmaT53ClirInfoRec() argument 235 this.cause = (byte)cause; in CdmaT53ClirInfoRec() 241 " cause: " + cause + in toString()
|
/frameworks/base/telephony/java/android/telephony/ |
D | DisconnectCause.java | 213 public static String toString(int cause) { in toString() argument 214 switch (cause) { in toString() 314 return "INVALID: " + cause; in toString()
|
/frameworks/volley/src/main/java/com/android/volley/ |
D | NetworkError.java | 28 public NetworkError(Throwable cause) { in NetworkError() argument 29 super(cause); in NetworkError()
|
D | ParseError.java | 30 public ParseError(Throwable cause) { in ParseError() argument 31 super(cause); in ParseError()
|
/frameworks/base/core/java/android/os/ |
D | BadParcelableException.java | 28 public BadParcelableException(Exception cause) { in BadParcelableException() argument 29 super(cause); in BadParcelableException()
|
/frameworks/base/core/java/android/database/ |
D | SQLException.java | 30 public SQLException(String error, Throwable cause) { in SQLException() argument 31 super(error, cause); in SQLException()
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/exceptions/ |
D | TimeoutRuntimeException.java | 30 public TimeoutRuntimeException(String message, Throwable cause) { in TimeoutRuntimeException() argument 31 super(message, cause); in TimeoutRuntimeException()
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteException.java | 32 public SQLiteException(String error, Throwable cause) { in SQLiteException() argument 33 super(error, cause); in SQLiteException()
|
/frameworks/base/keystore/java/android/security/keystore/ |
D | KeyExpiredException.java | 44 public KeyExpiredException(String message, Throwable cause) { in KeyExpiredException() argument 45 super(message, cause); in KeyExpiredException()
|