Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 25 of 346) sorted by relevance

12345678910>>...14

/frameworks/base/services/backup/java/com/android/server/backup/keyvalue/
DTaskException.java37 static TaskException stateCompromised(Exception cause) { in stateCompromised() argument
38 if (cause instanceof TaskException) { in stateCompromised()
39 TaskException exception = (TaskException) cause; in stateCompromised()
40 return new TaskException(cause, /* stateCompromised */ true, exception.getStatus()); in stateCompromised()
42 return new TaskException(cause, /* stateCompromised */ true, DEFAULT_STATUS); in stateCompromised()
51 static TaskException causedBy(Exception cause) { in causedBy() argument
52 if (cause instanceof TaskException) { in causedBy()
53 return (TaskException) cause; in causedBy()
55 return new TaskException(cause, /* stateCompromised */ false, DEFAULT_STATUS); in causedBy()
65 private TaskException(Exception cause, boolean stateCompromised, int status) { in TaskException() argument
[all …]
DAgentException.java37 static AgentException transitory(Exception cause) { in transitory() argument
38 return new AgentException(/* transitory */ true, cause); in transitory()
45 static AgentException permanent(Exception cause) { in permanent() argument
46 return new AgentException(/* transitory */ false, cause); in permanent()
55 private AgentException(boolean transitory, Exception cause) { in AgentException() argument
56 super(cause); in AgentException()
/frameworks/base/services/robotests/backup/src/com/android/server/backup/keyvalue/
DTaskExceptionTest.java45 Exception cause = TaskException.forStatus(BackupTransport.TRANSPORT_NOT_INITIALIZED); in testStateCompromised_whenCauseInstanceOfTaskException() local
47 TaskException exception = TaskException.stateCompromised(cause); in testStateCompromised_whenCauseInstanceOfTaskException()
51 assertThat(exception.getCause()).isEqualTo(cause); in testStateCompromised_whenCauseInstanceOfTaskException()
56 Exception cause = new IOException(); in testStateCompromised_whenCauseNotInstanceOfTaskException() local
58 TaskException exception = TaskException.stateCompromised(cause); in testStateCompromised_whenCauseNotInstanceOfTaskException()
62 assertThat(exception.getCause()).isEqualTo(cause); in testStateCompromised_whenCauseNotInstanceOfTaskException()
83 Exception cause = TaskException.forStatus(BackupTransport.TRANSPORT_NOT_INITIALIZED); in testCausedBy_whenCauseInstanceOfTaskException_returnsCause() local
85 TaskException exception = TaskException.causedBy(cause); in testCausedBy_whenCauseInstanceOfTaskException_returnsCause()
87 assertThat(exception).isEqualTo(cause); in testCausedBy_whenCauseInstanceOfTaskException_returnsCause()
92 Exception cause = new IOException(); in testCausedBy_whenCauseNotInstanceOfTaskException() local
[all …]
DAgentExceptionTest.java41 Exception cause = new IOException(); in testTransitory_withCause() local
43 AgentException exception = AgentException.transitory(cause); in testTransitory_withCause()
46 assertThat(exception.getCause()).isEqualTo(cause); in testTransitory_withCause()
58 Exception cause = new IOException(); in testPermanent_withCause() local
60 AgentException exception = AgentException.permanent(cause); in testPermanent_withCause()
63 assertThat(exception.getCause()).isEqualTo(cause); in testPermanent_withCause()
/frameworks/base/keystore/java/android/security/
DKeyChainException.java51 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/base/core/java/android/util/
DAndroidException.java30 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()
39 protected AndroidException(String message, Throwable cause, boolean enableSuppression, in AndroidException() argument
41 super(message, cause, enableSuppression, writableStackTrace); in AndroidException()
DAndroidRuntimeException.java30 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()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipException.java32 public SipException(String message, Throwable cause) { in SipException() argument
34 super(message, ((cause instanceof javax.sip.SipException) in SipException()
35 && (cause.getCause() != null)) in SipException()
36 ? cause.getCause() in SipException()
37 : cause); in SipException()
/frameworks/base/core/java/android/view/inspector/
DStaticInspectionCompanionProvider.java51 Throwable cause = e.getCause(); in provide()
52 if (cause instanceof RuntimeException) throw (RuntimeException) cause; in provide()
53 if (cause instanceof Error) throw (Error) cause; in provide()
54 throw new RuntimeException(cause); in provide()
/frameworks/base/core/java/android/os/
DRemoteException.java35 public RemoteException(String message, Throwable cause, boolean enableSuppression, in RemoteException() argument
37 super(message, cause, enableSuppression, writableStackTrace); in RemoteException()
41 public RemoteException(Throwable cause) { in RemoteException() argument
42 this(cause.getMessage(), cause, true, false); in RemoteException()
DBadParcelableException.java32 public BadParcelableException(Exception cause) { in BadParcelableException() argument
33 super(cause); in BadParcelableException()
36 public BadParcelableException(String msg, Throwable cause) { in BadParcelableException() argument
37 super(msg, cause); in BadParcelableException()
/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/
DServiceEntitlementException.java95 public ServiceEntitlementException(int error, String message, Throwable cause) { in ServiceEntitlementException() argument
96 this(error, HTTP_STATUS_UNSPECIFIED, RETRY_AFTER_UNSPECIFIED, message, cause); in ServiceEntitlementException()
99 public ServiceEntitlementException(int error, int httpStatus, String message, Throwable cause) { in ServiceEntitlementException() argument
100 this(error, httpStatus, RETRY_AFTER_UNSPECIFIED, message, cause); in ServiceEntitlementException()
104 int error, int httpStatus, String retryAfter, String message, Throwable cause) { in ServiceEntitlementException() argument
105 super(message, cause); in ServiceEntitlementException()
/frameworks/base/core/java/android/accounts/
DOperationCanceledException.java25 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()
DAccountsException.java26 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()
DNetworkErrorException.java25 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()
DAuthenticatorException.java26 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()
/frameworks/base/lowpan/java/android/net/lowpan/
DWrongStateException.java34 public WrongStateException(String message, Throwable cause) { in WrongStateException() argument
35 super(message, cause); in WrongStateException()
38 protected WrongStateException(Exception cause) { in WrongStateException() argument
39 super(cause); in WrongStateException()
DInterfaceDisabledException.java34 public InterfaceDisabledException(String message, Throwable cause) { in InterfaceDisabledException() argument
35 super(message, cause); in InterfaceDisabledException()
38 protected InterfaceDisabledException(Exception cause) { in InterfaceDisabledException() argument
39 super(cause); in InterfaceDisabledException()
DJoinFailedAtScanException.java34 public JoinFailedAtScanException(String message, Throwable cause) { in JoinFailedAtScanException() argument
35 super(message, cause); in JoinFailedAtScanException()
38 public JoinFailedAtScanException(Exception cause) { in JoinFailedAtScanException() argument
39 super(cause); in JoinFailedAtScanException()
DJoinFailedException.java34 public JoinFailedException(String message, Throwable cause) { in JoinFailedException() argument
35 super(message, cause); in JoinFailedException()
38 protected JoinFailedException(Exception cause) { in JoinFailedException() argument
39 super(cause); in JoinFailedException()
DJoinFailedAtAuthException.java34 public JoinFailedAtAuthException(String message, Throwable cause) { in JoinFailedAtAuthException() argument
35 super(message, cause); in JoinFailedAtAuthException()
38 public JoinFailedAtAuthException(Exception cause) { in JoinFailedAtAuthException() argument
39 super(cause); in JoinFailedAtAuthException()
DOperationCanceledException.java34 public OperationCanceledException(String message, Throwable cause) { in OperationCanceledException() argument
35 super(message, cause); in OperationCanceledException()
38 protected OperationCanceledException(Exception cause) { in OperationCanceledException() argument
39 super(cause); in OperationCanceledException()
DNetworkAlreadyExistsException.java34 public NetworkAlreadyExistsException(String message, Throwable cause) { in NetworkAlreadyExistsException() argument
35 super(message, cause); in NetworkAlreadyExistsException()
38 public NetworkAlreadyExistsException(Exception cause) { in NetworkAlreadyExistsException() argument
39 super(cause); in NetworkAlreadyExistsException()
/frameworks/base/tests/SystemMemoryTest/host/src/com/android/tests/sysmem/host/
DTestException.java24 TestException(Exception cause) { in TestException() argument
25 super(cause); in TestException()
32 TestException(String msg, Exception cause) { in TestException() argument
33 super(msg, cause); in TestException()
/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/tasks/
DEncryptedRestoreException.java25 public EncryptedRestoreException(Throwable cause) { in EncryptedRestoreException() argument
26 super(cause); in EncryptedRestoreException()
29 public EncryptedRestoreException(String message, Throwable cause) { in EncryptedRestoreException() argument
30 super(message, cause); in EncryptedRestoreException()

12345678910>>...14