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

1234567891011>>

/frameworks/base/keystore/java/android/security/keystore/
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/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/v4/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/test-runner/src/android/test/
H A DComparisonFailure.java27 public ComparisonFailure(String message, String expected, String actual) { argument
28 mComparison = new junit.framework.ComparisonFailure(message, expected, actual);
/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/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DSystem_Delegate.java27 public static void log(String message) { argument
31 public static void log(String message, Throwable th) { argument
/frameworks/compile/mclinker/include/mcld/Script/
H A DAssertCmd.h36 const std::string& message() const { return m_Message; } function in class:mcld::AssertCmd
/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/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsException.java34 public ImsException(String message, int code) { argument
35 super(message + ", code = " + code);
39 public ImsException(String message, Throwable cause, int code) { argument
40 super(message, cause);

Completed in 1013 milliseconds

1234567891011>>