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

1234

/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 DAndroidException.java30 public AndroidException(String name, Throwable cause) { argument
31 super(name, cause);
34 public AndroidException(Exception cause) { argument
35 super(cause);
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/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 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 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);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipException.java30 public SipException(String message, Throwable cause) { argument
32 super(message, ((cause instanceof javax.sip.SipException)
33 && (cause.getCause() != null))
34 ? cause.getCause()
35 : cause);
/frameworks/base/core/java/android/content/
H A DOperationApplicationException.java34 public OperationApplicationException(String message, Throwable cause) { argument
35 super(message, cause);
38 public OperationApplicationException(Throwable cause) { argument
39 super(cause);
/frameworks/base/telephony/java/com/android/ims/
H A DImsException.java39 public ImsException(String message, Throwable cause, int code) { argument
40 super(message, cause);
/frameworks/ex/camera2/public/src/com/android/ex/camera2/exceptions/
H A DTimeoutRuntimeException.java30 public TimeoutRuntimeException(String message, Throwable cause) { argument
31 super(message, cause);
/frameworks/opt/telephony/src/java/com/google/android/mms/
H A DMmsException.java43 * Creates a new MmsException with the specified cause.
45 * @param cause the cause.
47 public MmsException(Throwable cause) { argument
48 super(cause);
52 * Creates a new MmsException with the specified detail message and cause.
55 * @param cause the cause.
57 public MmsException(String message, Throwable cause) { argument
58 super(message, cause);
[all...]
/frameworks/base/core/java/android/app/
H A DAuthenticationRequiredException.java52 * @param cause original cause with details designed for engineering
61 public AuthenticationRequiredException(Throwable cause, PendingIntent userAction) { argument
62 super(cause.getMessage());
H A DRecoverableSecurityException.java66 * @param cause original cause with details designed for engineering
81 public RecoverableSecurityException(Throwable cause, CharSequence userMessage, argument
83 super(cause.getMessage());
90 public RecoverableSecurityException(Throwable cause, CharSequence userMessage, argument
92 this(cause, userMessage,
120 // remote app to cause all of our notifications to be blocked
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraAccessException.java121 public CameraAccessException(@AccessError int problem, String message, Throwable cause) { argument
122 super(getCombinedMessage(problem, message), cause);
126 public CameraAccessException(@AccessError int problem, Throwable cause) { argument
127 super(getDefaultMessage(problem), cause);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyExceptionUtils.java49 public BufferQueueAbandonedException(String name, Throwable cause) { argument
50 super(name, cause);
53 public BufferQueueAbandonedException(Exception cause) { argument
54 super(cause);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDcFailCauseTest.java42 DcFailCauseData(int cause, boolean permanentFailure, boolean eventLoggable) { argument
43 mCause = cause;
149 assertEquals("cause = " + data.mCause, data.mPermanentFailure, DcFailCause.fromInt(
171 assertTrue("cause = " + data.mCause, DcFailCause.fromInt(data.mCause).
174 assertFalse("cause = " + data.mCause, DcFailCause.fromInt(data.mCause).
185 assertEquals("cause = " + data.mCause, data.mEventLoggable,

Completed in 3995 milliseconds

1234