Searched defs:message (Results 26 - 50 of 416) sorted by relevance

1234567891011>>

/frameworks/base/keystore/java/android/security/
H A DKeyStoreException.java29 public KeyStoreException(int errorCode, String message) { argument
30 super(message);
/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);
/frameworks/base/location/java/android/location/
H A DOnNmeaMessageListener.java29 * Called when an NMEA message is received.
30 * @param message NMEA message
33 void onNmeaMessage(String message, long timestamp); argument
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DOMAException.java6 public OMAException(String message) { argument
7 super(message);
/frameworks/base/sax/java/android/sax/
H A DBadXmlException.java23 * An XML parse exception which includes the line number in the message.
27 public BadXmlException(String message, Locator locator) { argument
28 super(message, locator);
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipException.java26 public SipException(String message) { argument
27 super(message);
30 public SipException(String message, Throwable cause) { argument
32 super(message, ((cause instanceof javax.sip.SipException)
/frameworks/opt/telephony/src/java/com/google/android/mms/
H A DInvalidHeaderValueException.java27 * Constructs an InvalidHeaderValueException with no detailed message.
34 * Constructs an InvalidHeaderValueException with the specified detailed message.
36 * @param message the detailed message.
38 public InvalidHeaderValueException(String message) { argument
39 super(message);
/frameworks/opt/vcard/java/com/android/vcard/exception/
H A DVCardAgentNotSupportedException.java23 public VCardAgentNotSupportedException(String message) { argument
24 super(message);
H A DVCardException.java29 * @param message the error message
31 public VCardException(String message) { argument
32 super(message);
H A DVCardInvalidCommentLineException.java29 public VCardInvalidCommentLineException(final String message) { argument
30 super(message);
H A DVCardInvalidLineException.java28 public VCardInvalidLineException(final String message) { argument
29 super(message);
H A DVCardNestedException.java26 public VCardNestedException(String message) { argument
27 super(message);
H A DVCardNotSupportedException.java30 public VCardNotSupportedException(String message) { argument
31 super(message);
H A DVCardVersionException.java25 public VCardVersionException(String message) { argument
26 super(message);
/frameworks/support/compat/java/android/support/v4/os/
H A DOperationCanceledException.java28 public OperationCanceledException(String message) { argument
29 super(message != null ? message : "The operation has been canceled.");
/frameworks/av/drm/common/
H A DDrmInfoEvent.cpp22 DrmInfoEvent::DrmInfoEvent(int uniqueId, int infoType, const String8 message) argument
25 mMessage(message) {
/frameworks/base/core/java/android/content/
H A DOperationApplicationException.java30 public OperationApplicationException(String message) { argument
31 super(message);
34 public OperationApplicationException(String message, Throwable cause) { argument
35 super(message, cause);
46 public OperationApplicationException(String message, int numSuccessfulYieldPoints) { argument
47 super(message);
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteCommon.cpp23 /* throw a SQLiteException with a message appropriate for the error in handle */
28 /* throw a SQLiteException with the given message */
29 void throw_sqlite3_exception(JNIEnv* env, const char* message) { argument
30 throw_sqlite3_exception(env, NULL, message);
33 /* throw a SQLiteException with a message appropriate for the error in handle
34 concatenated with the given message
36 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) { argument
38 // get the error code and message from the SQLite connection
39 // the error message may contain more information than the error code
43 sqlite3_errmsg(handle), message);
54 throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) argument
61 throw_sqlite3_exception(JNIEnv* env, int errcode, const char* sqlite3Message, const char* message) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DBuildTest.java35 * an AssertionFailedError is thrown with the given message.
37 private static void assertNotEmpty(String message, String string) { argument
38 //Log.i(TAG, "" + message + ": " + string);
39 assertNotNull(message, string);
40 assertFalse(message, string.equals(""));
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSnackbars.java32 Activity activity, CharSequence message, int duration) {
34 return Snackbar.make(view, message, duration);
31 makeSnackbar( Activity activity, CharSequence message, int duration) argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DResourceException.java22 public ResourceException(String message, Exception e) { argument
23 super(message, e);
26 public ResourceException(String message, Uri uri1, Exception e) { argument
27 super(String.format(message, uri1.toString()), e);
30 public ResourceException(String message, Uri uri1, Uri uri2, Exception e) { argument
31 super(String.format(message, uri1.toString(), uri2.toString()), e);
34 public ResourceException(String message) { argument
35 super(message);
38 public ResourceException(String message, Uri uri1) { argument
39 super(String.format(message, uri
42 ResourceException(String message, Uri uri1, Uri uri2) argument
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DDecodeException.java8 public DecodeException(String message, int offset) { argument
9 super(message);

Completed in 984 milliseconds

1234567891011>>