Searched defs:cause (Results 26 - 50 of 75) sorted by relevance

123

/libcore/luni/src/main/java/java/security/
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 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 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 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...]
H A DCertificateException.java47 * cause.
51 * @param cause
52 * the cause.
54 public CertificateException(String message, Throwable cause) { argument
55 super(message, cause);
59 * Creates a new {@code CertificateException} with the specified cause.
61 * @param cause
62 * the cause
64 public CertificateException(Throwable cause) { argument
65 super(cause);
[all...]
H A DCertificateParsingException.java46 * message and cause.
50 * @param cause
53 public CertificateParsingException(String message, Throwable cause) { argument
54 super(message, cause);
59 * cause.
61 * @param cause
64 public CertificateParsingException(Throwable cause) { argument
65 super(cause);
/libcore/luni/src/main/java/java/util/
H A DConcurrentModificationException.java52 * message and cause.
56 public ConcurrentModificationException(String detailMessage, Throwable cause) { argument
57 super(detailMessage, cause);
61 * Constructs a new {@code ConcurrentModificationException} with the given cause.
65 public ConcurrentModificationException(Throwable cause) { argument
66 super(cause);
H A DServiceConfigurationError.java36 * Constructs a new error with the given detail message and cause.
38 * @param cause the cause, null
40 public ServiceConfigurationError(String message, Throwable cause) { argument
41 super(message, cause);
/libcore/luni/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.
53 * The detail message is set to {@code (cause == null ? null :
54 * cause
60 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 {@code (cause ==
53 * null ? null : cause
59 RejectedExecutionException(Throwable cause) argument
[all...]
/libcore/luni/src/main/java/javax/net/ssl/
H A DSSLHandshakeException.java36 * Constructs a new instance with given cause.
39 public SSLHandshakeException(Throwable cause) { argument
40 super(cause);
44 * Constructs a new instance with given detail message and cause.
47 public SSLHandshakeException(String reason, Throwable cause) { argument
48 super(reason, cause);
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathExpressionException.java39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathExpressionException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathExpressionException(Throwable cause) { argument
59 super(cause);
H A DXPathFactoryConfigurationException.java39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathFactoryConfigurationException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathFactoryConfigurationException(Throwable cause) { argument
59 super(cause);
H A DXPathFunctionException.java39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathFunctionException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathFunctionException(Throwable cause) { argument
59 super(cause);
/libcore/luni/src/main/java/java/security/spec/
H A DInvalidKeySpecException.java51 * and cause.
55 * @param cause
56 * the cause of this exception.
58 public InvalidKeySpecException(String message, Throwable cause) { argument
59 super(message, cause);
63 * Creates a new {@code InvalidKeySpecException} with the specified cause.
65 * @param cause
66 * the cause of this exception.
68 public InvalidKeySpecException(Throwable cause) { argument
69 super(cause);
[all...]
/libcore/luni/src/main/java/java/sql/
H A DBatchUpdateException.java57 * null if cause == null otherwise to cause.toString(), and the cause
58 * Throwable object is set to the given cause Throwable object.
60 * @param cause the Throwable object for the underlying reason this SQLException
64 public BatchUpdateException(Throwable cause) { argument
65 this(null, cause);
70 * null if cause == null otherwise to cause.toString(), and the cause
78 BatchUpdateException(int[] updateCounts, Throwable cause) argument
92 BatchUpdateException(String reason, int[] updateCounts, Throwable cause) argument
108 BatchUpdateException(String reason, String SQLState, int[] updateCounts, Throwable cause) argument
124 BatchUpdateException(String reason, String SQLState, int vendorCode, int[] updateCounts, Throwable cause) argument
[all...]
H A DSQLDataException.java80 * if cause == null or cause.toString() if cause!=null,and the cause
81 * Throwable object is set to the given cause Throwable object.
83 * @param cause
87 public SQLDataException(Throwable cause) { argument
88 super(cause);
93 * and the cause Throwable object is set to the given cause Throwabl
102 SQLDataException(String reason, Throwable cause) argument
120 SQLDataException(String reason, String sqlState, Throwable cause) argument
140 SQLDataException(String reason, String sqlState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLFeatureNotSupportedException.java81 * set to the null if cause == null or cause.toString() if cause!=null,and
82 * the cause Throwable object is set to the given cause Throwable object.
84 * @param cause
88 public SQLFeatureNotSupportedException(Throwable cause) { argument
89 super(cause);
94 * set to the given and the cause Throwable object is set to the given cause
103 SQLFeatureNotSupportedException(String reason, Throwable cause) argument
121 SQLFeatureNotSupportedException(String reason, String sqlState, Throwable cause) argument
143 SQLFeatureNotSupportedException(String reason, String sqlState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLIntegrityConstraintViolationException.java85 * string is set to the null if cause == null or cause.toString() if
86 * cause!=null,and the cause Throwable object is set to the given cause
89 * @param cause
93 public SQLIntegrityConstraintViolationException(Throwable cause) { argument
94 super(cause);
99 * string is set to the given and the cause Throwable object is set to the
100 * given cause Throwabl
108 SQLIntegrityConstraintViolationException(String reason, Throwable cause) argument
127 SQLIntegrityConstraintViolationException(String reason, String sqlState, Throwable cause) argument
149 SQLIntegrityConstraintViolationException(String reason, String sqlState, int vendorCode, Throwable cause) argument
[all...]

Completed in 270 milliseconds

123