Searched refs:cause (Results 1 - 25 of 77) sorted by relevance

1234

/dalvik/libcore/annotation/src/main/java/java/lang/annotation/
H A DAnnotationFormatError.java43 * Constructs an instance with a message and a cause.
47 * @param cause
48 * the cause of the error or {@code null} if none.
50 public AnnotationFormatError(String message, Throwable cause) { argument
51 super(message, cause);
55 * Constructs an instance with a cause. If the cause is not
56 * {@code null}, then {@code cause.toString()} is used as the
59 * @param cause
60 * the cause o
62 AnnotationFormatError(Throwable cause) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/lang/
H A DIllegalArgumentException.java49 * trace, the specified detail message and the specified cause.
53 * @param cause
54 * the cause of this exception, may be {@code null}.
57 public IllegalArgumentException(String message, Throwable cause) { argument
58 super(message, cause);
63 * trace and the specified cause.
65 * @param cause
66 * the cause of this exception, may be {@code null}.
69 public IllegalArgumentException(Throwable cause) { argument
70 super((cause
[all...]
H A DIllegalStateException.java49 * trace, the specified detail message and the specified cause.
53 * @param cause
54 * the cause of this exception.
57 public IllegalStateException(String message, Throwable cause) { argument
58 super(message, cause);
63 * trace and the specified cause.
65 * @param cause
66 * the cause of this exception, may be {@code null}.
69 public IllegalStateException(Throwable cause) { argument
70 super((cause
[all...]
H A DSecurityException.java48 * the specified detail message and the specified cause.
52 * @param cause
53 * the optional cause of this exception, may be {@code null}.
56 public SecurityException(String message, Throwable cause) { argument
57 super(message, cause);
62 * and the specified cause.
64 * @param cause
65 * the optional cause of this exception, may be {@code null}.
68 public SecurityException(Throwable cause) { argument
69 super((cause
[all...]
H A DUnsupportedOperationException.java47 * stack trace, the specified detail message and the specified cause.
51 * @param cause
52 * the optional cause of this exception, may be {@code null}.
55 public UnsupportedOperationException(String message, Throwable cause) { argument
56 super(message, cause);
61 * stack trace and the specified cause.
63 * @param cause
64 * the optional cause of this exception, may be {@code null}.
67 public UnsupportedOperationException(Throwable cause) { argument
68 super((cause
[all...]
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/
H A DSSLException.java39 * Creates a new {@code SSLException} with the specified message and cause.
43 * @param cause
44 * the cause.
46 public SSLException(String message, Throwable cause) { argument
48 super.initCause(cause);
52 * Creates a new {@code SSLException} with the specified cause.
54 * @param cause
55 * the cause
57 public SSLException(Throwable cause) { argument
58 super(cause
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DSimException.java30 public SimException(Throwable cause) { argument
31 super(cause);
34 public SimException(String message, Throwable cause) { argument
35 super(message, cause);
/dalvik/dx/src/com/android/dx/cf/iface/
H A DParseException.java30 public ParseException(Throwable cause) { argument
31 super(cause);
34 public ParseException(String message, Throwable cause) { argument
35 super(message, cause);
/dalvik/dx/src/com/android/dx/util/
H A DMutabilityException.java28 public MutabilityException(Throwable cause) { argument
29 super(cause);
32 public MutabilityException(String message, Throwable cause) { argument
33 super(message, cause);
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DExecutionException.java23 * The cause is not initialized, and may subsequently be
30 * message. The cause is not initialized, and may subsequently be
41 * message and cause.
44 * @param cause the cause (which is saved for later retrieval by the
47 public ExecutionException(String message, Throwable cause) { argument
48 super(message, cause);
52 * Constructs an <tt>ExecutionException</tt> with the specified cause.
55 * (cause == null ? null : cause
62 ExecutionException(Throwable cause) argument
[all...]
H A DRejectedExecutionException.java21 * The cause is not initialized, and may subsequently be
28 * specified detail message. The cause is not initialized, and may
40 * specified detail message and cause.
43 * @param cause the cause (which is saved for later retrieval by the
46 public RejectedExecutionException(String message, Throwable cause) { argument
47 super(message, cause);
52 * specified cause. The detail message is set to: <pre> (cause ==
53 * null ? null : cause
59 RejectedExecutionException(Throwable cause) argument
[all...]
/dalvik/libcore/security/src/main/java/java/security/
H A DDigestException.java46 * given message and the cause.
50 * @param cause
51 * the exception which is the cause for this exception.
53 public DigestException(String message, Throwable cause) { argument
54 super(message, cause);
59 * cause.
61 * @param cause
62 * the exception which is the cause for this exception.
64 public DigestException(Throwable cause) { argument
65 super(cause);
[all...]
H A DGeneralSecurityException.java47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public GeneralSecurityException(String message, Throwable cause) { argument
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public GeneralSecurityException(Throwable cause) { argument
66 super(cause);
[all...]
H A DInvalidAlgorithmParameterException.java47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public InvalidAlgorithmParameterException(String message, Throwable cause) { argument
55 super(message, cause);
60 * with the cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public InvalidAlgorithmParameterException(Throwable cause) { argument
66 super(cause);
[all...]
H A DInvalidKeyException.java47 * message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public InvalidKeyException(String message, Throwable cause) { argument
55 super(message, cause);
59 * Constructs a new instance of {@code InvalidKeyException} with the cause.
61 * @param cause
62 * the exception which is the cause for this exception.
64 public InvalidKeyException(Throwable cause) { argument
65 super(cause);
[all...]
H A DKeyException.java45 * and the cause.
49 * @param cause
50 * the exception which is the cause for this exception.
52 public KeyException(String message, Throwable cause) { argument
53 super(message, cause);
57 * Constructs a new instance of {@code KeyException} with the cause.
59 * @param cause
60 * the exception which is the cause for this exception.
62 public KeyException(Throwable cause) { argument
63 super(cause);
[all...]
H A DKeyManagementException.java47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public KeyManagementException(String message, Throwable cause) { argument
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public KeyManagementException(Throwable cause) { argument
66 super(cause);
[all...]
H A DKeyStoreException.java48 * given message and the cause.
52 * @param cause
53 * the exception which is the cause for this exception.
55 public KeyStoreException(String message, Throwable cause) { argument
56 super(message, cause);
61 * cause.
63 * @param cause
64 * the exception which is the cause for this exception.
66 public KeyStoreException(Throwable cause) { argument
67 super(cause);
[all...]
H A DNoSuchAlgorithmException.java47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public NoSuchAlgorithmException(String message, Throwable cause) { argument
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public NoSuchAlgorithmException(Throwable cause) { argument
66 super(cause);
[all...]
H A DProviderException.java49 * message and the cause.
53 * @param cause
54 * the exception which is the cause for this exception.
56 public ProviderException(String message, Throwable cause) { argument
57 super(message, cause);
61 * Constructs a new instance of {@code ProviderException} with the cause.
63 * @param cause
64 * the exception which is the cause for this exception.
66 public ProviderException(Throwable cause) { argument
67 super(cause);
[all...]
H A DSignatureException.java48 * given message and the cause.
52 * @param cause
53 * the exception which is the cause for this exception
55 public SignatureException(String message, Throwable cause) { argument
56 super(message, cause);
61 * cause.
63 * @param cause
64 * the exception which is the cause for this exception
66 public SignatureException(Throwable cause) { argument
67 super(cause);
[all...]
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DCRLException.java46 * Creates a new {@code CRLException} with the specified message and cause.
50 * @param cause
51 * the cause for this exception.
53 public CRLException(String message, Throwable cause) { argument
54 super(message, cause);
58 * Creates a new {@code CRLException} with the specified cause.
60 * @param cause
61 * the cause for this exception.
63 public CRLException(Throwable cause) { argument
64 super(cause);
[all...]
H A DCertPathBuilderException.java31 * and cause.
35 * @param cause
38 public CertPathBuilderException(String msg, Throwable cause) { argument
39 super(msg, cause);
43 * Creates a new {@code CertPathBuilderException} with the specified cause.
45 * @param cause
48 public CertPathBuilderException(Throwable cause) { argument
49 super(cause);
H A DCertStoreException.java31 * cause.
35 * @param cause
36 * the cause why the access to the certificate store failed.
38 public CertStoreException(String msg, Throwable cause) { argument
39 super(msg, cause);
43 * Creates a new {@code CertStoreException} with the specified cause.
45 * @param cause
46 * the cause why the access to the certificate store failed.
48 public CertStoreException(Throwable cause) { argument
49 super(cause);
[all...]
H A DCertificateEncodingException.java47 * message and cause.
51 * @param cause
52 * the cause.
54 public CertificateEncodingException(String message, Throwable cause) { argument
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the cause.
65 public CertificateEncodingException(Throwable cause) { argument
66 super(cause);
[all...]

Completed in 1652 milliseconds

1234