Searched defs:cause (Results 1 - 25 of 109) sorted by relevance

12345

/frameworks/base/core/java/android/accounts/
H A DAccountsException.java26 public AccountsException(String message, Throwable cause) { argument
27 super(message, cause);
29 public AccountsException(Throwable cause) { argument
30 super(cause);
H A DAuthenticatorException.java26 public AuthenticatorException(String message, Throwable cause) { argument
27 super(message, cause);
29 public AuthenticatorException(Throwable cause) { argument
30 super(cause);
H A DNetworkErrorException.java25 public NetworkErrorException(String message, Throwable cause) { argument
26 super(message, cause);
28 public NetworkErrorException(Throwable cause) { argument
29 super(cause);
H A DOperationCanceledException.java25 public OperationCanceledException(String message, Throwable cause) { argument
26 super(message, cause);
28 public OperationCanceledException(Throwable cause) { argument
29 super(cause);
/frameworks/base/core/java/android/database/
H A DSQLException.java30 public SQLException(String error, Throwable cause) { argument
31 super(error, cause);
/frameworks/base/core/java/android/os/
H A DBadParcelableException.java32 public BadParcelableException(Exception cause) { argument
33 super(cause);
/frameworks/base/core/java/android/util/
H A DAndroidRuntimeException.java30 public AndroidRuntimeException(String name, Throwable cause) { argument
31 super(name, cause);
34 public AndroidRuntimeException(Exception cause) { argument
35 super(cause);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteException.java32 public SQLiteException(String error, Throwable cause) { argument
33 super(error, cause);
/frameworks/base/core/java/android/util/apk/
H A DSignatureNotFoundException.java31 public SignatureNotFoundException(String message, Throwable cause) { argument
32 super(message, cause);
/frameworks/base/keystore/java/android/security/
H A DKeyChainException.java44 * trace, the specified detail message and the specified cause.
48 * @param cause
49 * the cause of this exception, may be {@code null}.
51 public KeyChainException(String message, Throwable cause) { argument
52 super(message, cause);
57 * trace and the specified cause.
59 * @param cause
60 * the cause of this exception, may be {@code null}.
62 public KeyChainException(Throwable cause) { argument
63 super((cause
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DDeviceIdAttestationException.java37 * specified detail message and the specified cause.
40 * @param cause the cause of this exception, may be {@code null}.
42 public DeviceIdAttestationException(String message, Throwable cause) { argument
43 super(message, cause);
H A DKeyAttestationException.java38 * specified detail message and the specified cause.
41 * @param cause the cause of this exception, may be {@code null}.
43 public KeyAttestationException(String message, Throwable cause) { argument
44 super(message, cause);
H A DKeyExpiredException.java28 * Constructs a new {@code KeyExpiredException} without detail message and cause.
35 * Constructs a new {@code KeyExpiredException} with the provided detail message and no cause.
42 * Constructs a new {@code KeyExpiredException} with the provided detail message and cause.
44 public KeyExpiredException(String message, Throwable cause) { argument
45 super(message, cause);
H A DKeyNotYetValidException.java28 * Constructs a new {@code KeyNotYetValidException} without detail message and cause.
36 * cause.
43 * Constructs a new {@code KeyNotYetValidException} with the provided detail message and cause.
45 public KeyNotYetValidException(String message, Throwable cause) { argument
46 super(message, cause);
H A DKeyPermanentlyInvalidatedException.java35 * Constructs a new {@code KeyPermanentlyInvalidatedException} without detail message and cause.
43 * and no cause.
51 * and cause.
53 public KeyPermanentlyInvalidatedException(String message, Throwable cause) { argument
54 super(message, cause);
H A DSecureKeyImportUnavailableException.java38 public SecureKeyImportUnavailableException(String message, Throwable cause) { argument
39 super(message, cause);
42 public SecureKeyImportUnavailableException(Throwable cause) { argument
43 super(cause);
H A DStrongBoxUnavailableException.java40 public StrongBoxUnavailableException(String message, Throwable cause) { argument
41 super(message, cause);
44 public StrongBoxUnavailableException(Throwable cause) { argument
45 super(cause);
H A DUserNotAuthenticatedException.java28 * Constructs a new {@code UserNotAuthenticatedException} without detail message and cause.
36 * no cause.
44 * cause.
46 public UserNotAuthenticatedException(String message, Throwable cause) { argument
47 super(message, cause);
H A DUserPresenceUnavailableException.java27 * Constructs a {@code UserPresenceUnavailableException} without a detail message or cause.
35 * but no cause.
43 * and cause.
45 public UserPresenceUnavailableException(String message, Throwable cause) { argument
46 super(message, cause);
/frameworks/base/lowpan/java/android/net/lowpan/
H A DInterfaceDisabledException.java34 public InterfaceDisabledException(String message, Throwable cause) { argument
35 super(message, cause);
38 protected InterfaceDisabledException(Exception cause) { argument
39 super(cause);
H A DJoinFailedAtAuthException.java34 public JoinFailedAtAuthException(String message, Throwable cause) { argument
35 super(message, cause);
38 public JoinFailedAtAuthException(Exception cause) { argument
39 super(cause);
H A DJoinFailedAtScanException.java34 public JoinFailedAtScanException(String message, Throwable cause) { argument
35 super(message, cause);
38 public JoinFailedAtScanException(Exception cause) { argument
39 super(cause);
H A DJoinFailedException.java34 public JoinFailedException(String message, Throwable cause) { argument
35 super(message, cause);
38 protected JoinFailedException(Exception cause) { argument
39 super(cause);
H A DLowpanRuntimeException.java35 public LowpanRuntimeException(String message, Throwable cause) { argument
36 super(message, cause);
39 public LowpanRuntimeException(Exception cause) { argument
40 super(cause);
H A DNetworkAlreadyExistsException.java34 public NetworkAlreadyExistsException(String message, Throwable cause) { argument
35 super(message, cause);
38 public NetworkAlreadyExistsException(Exception cause) { argument
39 super(cause);

Completed in 590 milliseconds

12345