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

1234

/libcore/luni/src/main/java/java/io/
H A DIOError.java29 * Constructs a new instance with its cause filled in.
31 * @param cause
32 * The detail cause for the error.
34 public IOError(Throwable cause) { argument
35 super(cause);
H A DIOException.java48 * Constructs a new instance of this class with detail message and cause
53 * @param cause
54 * The detail cause for the exception.
57 public IOException(String message, Throwable cause) { argument
58 super(message, cause);
62 * Constructs a new instance of this class with its detail cause filled in.
64 * @param cause
65 * The detail cause for the exception.
68 public IOException(Throwable cause) { argument
69 super(cause
[all...]
/libcore/luni/src/main/java/java/lang/
H A DIllegalArgumentException.java48 * trace, the specified detail message and the specified cause.
52 * @param cause
53 * the cause of this exception, may be {@code null}.
56 public IllegalArgumentException(String message, Throwable cause) { argument
57 super(message, cause);
62 * trace and the specified cause.
64 * @param cause
65 * the cause of this exception, may be {@code null}.
68 public IllegalArgumentException(Throwable cause) { argument
69 super((cause
[all...]
H A DIllegalStateException.java48 * trace, the specified detail message and the specified cause.
52 * @param cause
53 * the cause of this exception.
56 public IllegalStateException(String message, Throwable cause) { argument
57 super(message, cause);
62 * trace and the specified cause.
64 * @param cause
65 * the cause of this exception, may be {@code null}.
68 public IllegalStateException(Throwable cause) { argument
69 super((cause
[all...]
H A DSecurityException.java47 * the specified detail message and the specified cause.
51 * @param cause
52 * the optional cause of this exception, may be {@code null}.
55 public SecurityException(String message, Throwable cause) { argument
56 super(message, cause);
61 * and the specified cause.
63 * @param cause
64 * the optional cause of this exception, may be {@code null}.
67 public SecurityException(Throwable cause) { argument
68 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...]
/libcore/luni/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...]
/libcore/luni/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...]
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DMalformedHprofException.java28 MalformedHprofException(String message, Throwable cause) { argument
29 super(message, cause);
31 MalformedHprofException(Throwable cause) { argument
32 super(cause);
/libcore/luni/src/main/java/java/net/
H A DSocketException.java43 * Constructs a new instance with the given cause.
46 public SocketException(Throwable cause) { argument
47 super(cause);
51 * Constructs a new instance with given detail message and cause.
54 public SocketException(String detailMessage, Throwable cause) { argument
55 super(detailMessage, cause);
H A DSocketTimeoutException.java44 * Constructs a new instance with given cause.
47 public SocketTimeoutException(Throwable cause) { argument
48 super(null, cause);
52 * Constructs a new instance with given detail message and cause.
55 public SocketTimeoutException(String detailMessage, Throwable cause) { argument
56 super(detailMessage, cause);
/libcore/luni/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...]
/libcore/luni/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 360 milliseconds

1234