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

1234

/libcore/luni/src/main/java/java/lang/
H A DReflectiveOperationException.java28 * Constructs a new exception with no detail message.
34 * Constructs a new exception with the given detail message.
36 public ReflectiveOperationException(String message) { argument
37 super(message);
48 * Constructs a new exception with the given detail message and cause.
50 public ReflectiveOperationException(String message, Throwable cause) { argument
51 super(message, cause);
H A DIllegalArgumentException.java37 * trace and the specified detail message.
40 * the detail message for this exception.
48 * trace, the specified detail message and the specified cause.
50 * @param message
51 * the detail message for this exception.
56 public IllegalArgumentException(String message, Throwable cause) { argument
57 super(message, cause);
H A DIllegalStateException.java37 * trace and the specified detail message.
40 * the detail message for this exception.
48 * trace, the specified detail message and the specified cause.
50 * @param message
51 * the detail message for this exception.
56 public IllegalStateException(String message, Throwable cause) { argument
57 super(message, cause);
H A DSecurityException.java36 * and the specified detail message.
39 * the detail message for this exception.
47 * the specified detail message and the specified cause.
49 * @param message
50 * the detail message for this exception.
55 public SecurityException(String message, Throwable cause) { argument
56 super(message, cause);
H A DUnsupportedOperationException.java36 * stack trace and the specified detail message.
39 * the detail message for this exception.
47 * stack trace, the specified detail message and the specified cause.
49 * @param message
50 * the detail message for this exception.
55 public UnsupportedOperationException(String message, Throwable cause) { argument
56 super(message, cause);
/libcore/luni/src/main/java/javax/crypto/
H A DAEADBadTagException.java38 * {@code message}.
40 public AEADBadTagException(String message) { argument
41 super(message);
/libcore/luni/src/main/java/org/xml/sax/
H A DSAXNotRecognizedException.java41 * Construct a new exception with the given message.
43 * @param message The text message of the exception.
45 public SAXNotRecognizedException (String message) argument
47 super(message);
H A DSAXNotSupportedException.java33 * Construct a new exception with no message.
41 * Construct a new exception with the given message.
43 * @param message The text message of the exception.
45 public SAXNotSupportedException (String message) argument
47 super(message);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DMalformedHprofException.java25 MalformedHprofException(String message) { argument
26 super(message);
28 MalformedHprofException(String message, Throwable cause) { argument
29 super(message, cause);
/libcore/dex/src/main/java/com/android/dex/
H A DDexException.java26 public DexException(String message) { argument
27 super(message);
/libcore/luni/src/main/java/java/io/
H A DIOException.java38 * message filled in.
41 * the detail message for this exception.
48 * Constructs a new instance of this class with detail message and cause
51 * @param message
52 * The detail message for the exception.
57 public IOException(String message, Throwable cause) { argument
58 super(message, cause);
/libcore/luni/src/main/java/java/lang/annotation/
H A DAnnotationFormatError.java33 * Constructs an instance with the message provided.
35 * @param message
38 public AnnotationFormatError(String message) { argument
39 super(message);
43 * Constructs an instance with a message and a cause.
45 * @param message
50 public AnnotationFormatError(String message, Throwable cause) { argument
51 super(message, cause);
57 * error's message.
/libcore/luni/src/main/java/java/security/
H A DAccessControlException.java32 * given message.
34 * @param message
35 * the detail message for this exception.
37 public AccessControlException(String message) { argument
38 super(message);
43 * given message and the requested {@code Permission} which was not granted.
45 * @param message
46 * the detail message for the exception.
50 public AccessControlException(String message, Permission perm) { argument
51 super(message);
[all...]
H A DDigestException.java21 *{@code DigestException} is a general message digest exception.
29 * given message.
32 * the detail message for this exception.
46 * given message and the cause.
48 * @param message
49 * the detail message for this exception.
53 public DigestException(String message, Throwable cause) { argument
54 super(message, cause);
H A DGeneralSecurityException.java30 * given message.
33 * the detail message for this exception.
47 * given message and the cause.
49 * @param message
50 * the detail message for this exception.
54 public GeneralSecurityException(String message, Throwable cause) { argument
55 super(message, cause);
H A DInvalidAlgorithmParameterException.java30 * with the given message.
33 * the detail message for this exception.
47 * given message and the cause.
49 * @param message
50 * the detail message for this exception.
54 public InvalidAlgorithmParameterException(String message, Throwable cause) { argument
55 super(message, cause);
H A DInvalidKeyException.java30 * message.
33 * the detail message for this exception.
47 * message and the cause.
49 * @param message
50 * the detail message for this exception.
54 public InvalidKeyException(String message, Throwable cause) { argument
55 super(message, cause);
H A DKeyException.java28 * Constructs a new instance of {@code KeyException} with the given message.
31 * the detail message for this exception.
44 * Constructs a new instance of {@code KeyException} with the given message
47 * @param message
48 * the detail message for this exception.
52 public KeyException(String message, Throwable cause) { argument
53 super(message, cause);
H A DKeyManagementException.java30 * given message.
33 * the detail message for this exception.
47 * given message and the cause.
49 * @param message
50 * the detail message for this exception.
54 public KeyManagementException(String message, Throwable cause) { argument
55 super(message, cause);
H A DKeyStoreException.java31 * given message.
34 * the detail message for this exception.
48 * given message and the cause.
50 * @param message
51 * the detail message for this exception.
55 public KeyStoreException(String message, Throwable cause) { argument
56 super(message, cause);
H A DNoSuchAlgorithmException.java30 * given message.
33 * the detail message for this exception.
47 * given message and the cause.
49 * @param message
50 * the detail message for this exception.
54 public NoSuchAlgorithmException(String message, Throwable cause) { argument
55 super(message, cause);
H A DProviderException.java32 * message.
35 * the detail message for this exception.
49 * message and the cause.
51 * @param message
52 * the detail message for this exception.
56 public ProviderException(String message, Throwable cause) { argument
57 super(message, cause);
H A DSignatureException.java31 * given message.
34 * the detail message for this exception.
48 * given message and the cause.
50 * @param message
51 * the detail message for this exception
55 public SignatureException(String message, Throwable cause) { argument
56 super(message, cause);
/libcore/luni/src/main/java/java/util/
H A DServiceConfigurationError.java28 * Constructs a new error with the given detail message.
29 * @param message the detail message, or null
31 public ServiceConfigurationError(String message) { argument
32 super(message);
36 * Constructs a new error with the given detail message and cause.
37 * @param message the detail message, or null
40 public ServiceConfigurationError(String message, Throwable cause) { argument
41 super(message, caus
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DBrokenBarrierException.java24 * message.
30 * detail message.
32 * @param message the detail message
34 public BrokenBarrierException(String message) { argument
35 super(message);

Completed in 369 milliseconds

1234