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

1234567

/dalvik/libcore/archive/src/main/native/
H A Dzip.c25 throwNewIllegalStateException (JNIEnv * env, const char *message) argument
27 jniThrowException(env, "java/lang/IllegalStateException", message);
34 throwNewIllegalArgumentException (JNIEnv * env, const char *message) argument
36 jniThrowException(env, "java/lang/IllegalArgumentException", message);
/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/
H A DLocalizedException.java11 protected ErrorBundle message; field in class:LocalizedException
15 * Constructs a new LocalizedException with the specified localized message.
16 * @param message the {@link ErrorBundle} that contains the message for the exception
18 public LocalizedException(ErrorBundle message) argument
20 super(message.getText(Locale.getDefault()));
21 this.message = message;
25 * Constructs a new LocalizedException with the specified localized message and cause.
26 * @param message th
29 LocalizedException(ErrorBundle message, Throwable throwable) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DXPathProcessorException.java34 * an error message.
35 * @param message The error message.
37 public XPathProcessorException(String message) argument
39 super(message);
45 * an error message, and another exception
47 * @param message The error message.
50 public XPathProcessorException(String message, Exception e) argument
52 super(message,
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DWarning.java26 * @param message human-oriented message
28 public Warning(String message) { argument
29 super(message);
/dalvik/dx/src/junit/framework/
H A DAssertionFailedError.java10 public AssertionFailedError (String message) { argument
11 super (message);
/dalvik/libcore/junit/src/main/java/junit/framework/
H A DAssertionFailedError.java10 public AssertionFailedError (String message) { argument
11 super (message);
/dalvik/libcore/luni/src/test/java/com/google/coretests/
H A DCoreTestTimeout.java26 * Creates a new instance with the given message.
28 public CoreTestTimeout(String message) { argument
29 super(message);
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DCryptoException.java17 * create a CryptoException with the given message.
19 * @param message the message to be carried with the exception.
22 String message)
24 super(message);
21 CryptoException( String message) argument
H A DDataLengthException.java20 * create a DataLengthException with the given message.
22 * @param message the message to be carried with the exception.
25 String message)
27 super(message);
24 DataLengthException( String message) argument
H A DInvalidCipherTextException.java5 * message.
18 * create a InvalidCipherTextException with the given message.
20 * @param message the message to be carried with the exception.
23 String message)
25 super(message);
22 InvalidCipherTextException( String message) argument
H A DRuntimeCryptoException.java17 * create a RuntimeCryptoException with the given message.
19 * @param message the message to be carried with the exception.
22 String message)
24 super(message);
21 RuntimeCryptoException( String message) argument
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatException.java25 public ExpatException(String message) { argument
26 super(message);
/dalvik/libcore/xml/src/main/java/org/xml/sax/
H A DSAXNotRecognizedException.java42 * Construct a new exception with the given message.
44 * @param message The text message of the exception.
46 public SAXNotRecognizedException (String message) argument
48 super(message);
H A DSAXNotSupportedException.java33 * Construct a new exception with no message.
42 * Construct a new exception with the given message.
44 * @param message The text message of the exception.
46 public SAXNotSupportedException (String message) argument
48 super(message);
/dalvik/tests/021-string2/src/junit/framework/
H A DAssertionFailedError.java10 public AssertionFailedError (String message) { argument
11 super (message);
/dalvik/tests/082-inline-execute/src/junit/framework/
H A DAssertionFailedError.java10 public AssertionFailedError (String message) { argument
11 super (message);
/dalvik/libcore/icu/src/main/native/
H A DErrorCode.cpp23 const char* message = u_errorName(errorCode); local
30 return jniThrowException(env, "java/lang/IllegalArgumentException", message);
33 return jniThrowException(env, "java/lang/ArrayIndexOutOfBoundsException", message);
35 return jniThrowException(env, "java/lang/UnsupportedOperationException", message);
37 return jniThrowRuntimeException(env, message);
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DMidiEvent.java21 private MidiMessage message; field in class:MidiEvent
25 public MidiEvent(MidiMessage message, long tick) { argument
26 this.message = message;
31 return message;
H A DInvalidMidiDataException.java27 public InvalidMidiDataException(String message) { argument
28 super(message);
H A DMidiUnavailableException.java27 public MidiUnavailableException(String message) { argument
28 super(message);
/dalvik/libcore/auth/src/main/java/javax/security/auth/
H A DDestroyFailedException.java37 * @param message
38 * A detail message that describes the reason for this exception.
40 public DestroyFailedException(String message) { argument
41 super(message);
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DBrokenBarrierException.java25 * message.
31 * detail message.
33 * @param message the detail message
35 public BrokenBarrierException(String message) { argument
36 super(message);
H A DCancellationException.java21 * Constructs a <tt>CancellationException</tt> with no detail message.
27 * message.
29 * @param message the detail message
31 public CancellationException(String message) { argument
32 super(message);
H A DTimeoutException.java25 * message.
31 * message.
33 * @param message the detail message
35 public TimeoutException(String message) { argument
36 super(message);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DInvalidJarIndexException.java37 * Constructs a new instance of this class with its message filled in.
39 * @param message
40 * String The message for the exception.
42 public InvalidJarIndexException(String message) { argument
43 super(message);

Completed in 1956 milliseconds

1234567