Searched refs:message (Results 1 - 25 of 1011) sorted by relevance

1234567891011>>

/frameworks/support/room/rxjava2/src/main/java/androidx/room/
H A DEmptyResultSetException.java26 * @param message The SQL query which didn't return any results.
28 public EmptyResultSetException(String message) { argument
29 super(message);
/frameworks/base/test-base/src/junit/framework/
H A DAssertionFailedError.java13 public AssertionFailedError(String message) { argument
14 super(defaultString(message));
17 private static String defaultString(String message) { argument
18 return message == null ? "" : message;
/frameworks/base/core/java/android/os/
H A DOperationCanceledException.java30 public OperationCanceledException(String message) { argument
31 super(message != null ? message : "The operation has been canceled.");
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DLogger.java20 public abstract void log(String message); argument
22 public void logError(String message) { argument
23 log("ERROR: " + message);
/frameworks/support/compat/src/main/java/androidx/core/os/
H A DOperationCanceledException.java28 public OperationCanceledException(String message) { argument
29 super(message != null ? message : "The operation has been canceled.");
/frameworks/base/core/java/android/accounts/
H A DAccountsException.java23 public AccountsException(String message) { argument
24 super(message);
26 public AccountsException(String message, Throwable cause) { argument
27 super(message, cause);
H A DAuthenticatorException.java23 public AuthenticatorException(String message) { argument
24 super(message);
26 public AuthenticatorException(String message, Throwable cause) { argument
27 super(message, cause);
H A DNetworkErrorException.java22 public NetworkErrorException(String message) { argument
23 super(message);
25 public NetworkErrorException(String message, Throwable cause) { argument
26 super(message, cause);
H A DOperationCanceledException.java22 public OperationCanceledException(String message) { argument
23 super(message);
25 public OperationCanceledException(String message, Throwable cause) { argument
26 super(message, cause);
/frameworks/base/core/java/android/nfc/
H A DFormatException.java24 public FormatException(String message) { argument
25 super(message);
28 public FormatException(String message, Throwable e) { argument
29 super(message, e);
/frameworks/base/core/java/android/util/apk/
H A DSignatureNotFoundException.java27 public SignatureNotFoundException(String message) { argument
28 super(message);
31 public SignatureNotFoundException(String message, Throwable cause) { argument
32 super(message, cause);
/frameworks/base/keystore/java/android/security/keystore/
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.
37 public KeyExpiredException(String message) { argument
38 super(message);
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.
35 * Constructs a new {@code KeyNotYetValidException} with the provided detail message and no
38 public KeyNotYetValidException(String message) { argument
39 super(message);
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.
42 * Constructs a new {@code KeyPermanentlyInvalidatedException} with the provided detail message
45 public KeyPermanentlyInvalidatedException(String message) { argument
46 super(message);
50 * Constructs a new {@code KeyPermanentlyInvalidatedException} with the provided detail message
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.
35 * Constructs a new {@code UserNotAuthenticatedException} with the provided detail message and
38 public UserNotAuthenticatedException(String message) { argument
39 super(message);
43 * Constructs a new {@code UserNotAuthenticatedException} with the provided detail message and
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.
34 * Constructs a {@code UserPresenceUnavailableException} using the provided detail message
37 public UserPresenceUnavailableException(String message) { argument
38 super(message);
42 * Constructs a {@code UserPresenceUnavailableException} using the provided detail message
45 public UserPresenceUnavailableException(String message, Throwable cause) { argument
46 super(message, cause);
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
H A DRecoverableKeyStorageException.java28 public RecoverableKeyStorageException(String message) { argument
29 super(message);
32 public RecoverableKeyStorageException(String message, Throwable cause) { argument
33 super(message, cause);
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/serialization/
H A DKeyChainSnapshotParserException.java25 public KeyChainSnapshotParserException(String message, Throwable cause) { argument
26 super(message, cause);
29 public KeyChainSnapshotParserException(String message) { argument
30 super(message);
/frameworks/ex/camera2/public/src/com/android/ex/camera2/exceptions/
H A DTimeoutRuntimeException.java26 public TimeoutRuntimeException(String message) { argument
27 super(message);
30 public TimeoutRuntimeException(String message, Throwable cause) { argument
31 super(message, cause);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
H A DEuiccCardException.java26 public EuiccCardException(String message) { argument
27 super(message);
30 public EuiccCardException(String message, Throwable throwable) { argument
31 super(message, throwable);
/frameworks/base/core/java/android/os/strictmode/
H A DNonSdkApiUsedViolation.java25 public NonSdkApiUsedViolation(String message) { argument
26 super(message);
H A DViolation.java21 Violation(String message) { argument
22 super(message);
/frameworks/base/core/java/android/security/
H A DConfirmationAlreadyPresentingException.java26 public ConfirmationAlreadyPresentingException(String message) { argument
27 super(message);
H A DConfirmationNotAvailableException.java27 public ConfirmationNotAvailableException(String message) { argument
28 super(message);
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteSecurityException.java23 ZygoteSecurityException(String message) { argument
24 super(message);

Completed in 501 milliseconds

1234567891011>>