HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 101 - 125 of 2314) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/
IllegalStateException.java 60 * cause.
62 * <p>Note that the detail message associated with <code>cause</code> is
68 * @param cause the cause (which is saved for later retrieval by the
70 * is permitted, and indicates that the cause is nonexistent or
74 public IllegalStateException(String message, Throwable cause) {
75 super(message, cause);
79 * Constructs a new exception with the specified cause and a detail
80 * message of <tt>(cause==null ? null : cause.toString())</tt> (whic
    [all...]
InternalError.java 58 * message and cause. <p>Note that the detail message associated
59 * with {@code cause} is <i>not</i> automatically incorporated in
64 * @param cause the cause (which is saved for later retrieval by the
66 * permitted, and indicates that the cause is nonexistent or
70 public InternalError(String message, Throwable cause) {
71 super(message, cause);
75 * Constructs an {@code InternalError} with the specified cause
76 * and a detail message of {@code (cause==null ? null :
77 * cause.toString())} (which typically contains the class an
    [all...]
ReflectiveOperationException.java 40 * message. The cause is not initialized, and may subsequently be
49 * The cause is not initialized, and may subsequently be
61 * and cause.
64 * {@code cause} is <em>not</em> automatically incorporated in
69 * @param cause the cause (which is saved for later retrieval by the
71 * permitted, and indicates that the cause is nonexistent or
74 public ReflectiveOperationException(String message, Throwable cause) {
75 super(message, cause);
79 * Constructs a new exception with the specified cause and a detai
    [all...]
SecurityException.java 57 * detail message and cause.
61 * @param cause the cause (which is saved for later retrieval by the
63 * and indicates that the cause is nonexistent or unknown.)
66 public SecurityException(String message, Throwable cause) {
67 super(message, cause);
71 * Creates a <code>SecurityException</code> with the specified cause
72 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
74 * <tt>cause</tt>)
    [all...]
UnsupportedOperationException.java 57 * cause.
59 * <p>Note that the detail message associated with <code>cause</code> is
65 * @param cause the cause (which is saved for later retrieval by the
67 * is permitted, and indicates that the cause is nonexistent or
71 public UnsupportedOperationException(String message, Throwable cause) {
72 super(message, cause);
76 * Constructs a new exception with the specified cause and a detail
77 * message of <tt>(cause==null ? null : cause.toString())</tt> (whic
    [all...]
VirtualMachineError.java 58 * detail message and cause. <p>Note that the detail message
59 * associated with {@code cause} is <i>not</i> automatically
64 * @param cause the cause (which is saved for later retrieval by the
66 * permitted, and indicates that the cause is nonexistent or
70 public VirtualMachineError(String message, Throwable cause) {
71 super(message, cause);
76 * cause and a detail message of {@code (cause==null ? null :
77 * cause.toString())} (which typically contains the class an
    [all...]
  /libcore/ojluni/src/main/java/java/lang/annotation/
AnnotationFormatError.java 54 * detail message and cause. Note that the detail message associated
55 * with <code>cause</code> is <i>not</i> automatically incorporated in
59 * @param cause the cause (A <tt>null</tt> value is permitted, and
60 * indicates that the cause is nonexistent or unknown.)
62 public AnnotationFormatError(String message, Throwable cause) {
63 super(message, cause);
69 * cause and a detail message of
70 * <tt>(cause == null ? null : cause.toString())</tt> (whic
    [all...]
  /libcore/ojluni/src/main/java/java/net/
SocketException.java 58 public SocketException(Throwable cause) {
59 super(cause);
63 public SocketException(String msg, Throwable cause) {
64 super(msg, cause);
SocketTimeoutException.java 53 public SocketTimeoutException(Throwable cause) {
54 super(cause);
58 public SocketTimeoutException(String msg, Throwable cause) {
59 super(msg, cause);
  /libcore/ojluni/src/main/java/java/security/
DigestException.java 59 * detail message and cause.
63 * @param cause the cause (which is saved for later retrieval by the
65 * and indicates that the cause is nonexistent or unknown.)
68 public DigestException(String message, Throwable cause) {
69 super(message, cause);
73 * Creates a <code>DigestException</code> with the specified cause
74 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
76 * <tt>cause</tt>)
    [all...]
GeneralSecurityException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public GeneralSecurityException(String message, Throwable cause) {
71 super(message, cause);
75 * Creates a <code>GeneralSecurityException</code> with the specified cause
76 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
78 * <tt>cause</tt>)
    [all...]
InvalidAlgorithmParameterException.java 69 * specified detail message and cause.
73 * @param cause the cause (which is saved for later retrieval by the
75 * and indicates that the cause is nonexistent or unknown.)
78 public InvalidAlgorithmParameterException(String message, Throwable cause) {
79 super(message, cause);
84 * specified cause and a detail message of
85 * <tt>(cause==null ? null : cause.toString())</tt>
87 * <tt>cause</tt>)
    [all...]
InvalidKeyException.java 62 * detail message and cause.
66 * @param cause the cause (which is saved for later retrieval by the
68 * and indicates that the cause is nonexistent or unknown.)
71 public InvalidKeyException(String message, Throwable cause) {
72 super(message, cause);
76 * Creates a <code>InvalidKeyException</code> with the specified cause
77 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</tt>)
    [all...]
KeyException.java 63 * detail message and cause.
67 * @param cause the cause (which is saved for later retrieval by the
69 * and indicates that the cause is nonexistent or unknown.)
72 public KeyException(String message, Throwable cause) {
73 super(message, cause);
77 * Creates a <code>KeyException</code> with the specified cause
78 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
80 * <tt>cause</tt>)
    [all...]
KeyManagementException.java 72 * detail message and cause.
76 * @param cause the cause (which is saved for later retrieval by the
78 * and indicates that the cause is nonexistent or unknown.)
81 public KeyManagementException(String message, Throwable cause) {
82 super(message, cause);
86 * Creates a <code>KeyManagementException</code> with the specified cause
87 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
89 * <tt>cause</tt>)
    [all...]
KeyStoreException.java 63 * detail message and cause.
67 * @param cause the cause (which is saved for later retrieval by the
69 * and indicates that the cause is nonexistent or unknown.)
72 public KeyStoreException(String message, Throwable cause) {
73 super(message, cause);
77 * Creates a <code>KeyStoreException</code> with the specified cause
78 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
80 * <tt>cause</tt>)
    [all...]
NoSuchAlgorithmException.java 62 * detail message and cause.
66 * @param cause the cause (which is saved for later retrieval by the
68 * and indicates that the cause is nonexistent or unknown.)
71 public NoSuchAlgorithmException(String message, Throwable cause) {
72 super(message, cause);
76 * Creates a <code>NoSuchAlgorithmException</code> with the specified cause
77 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</tt>)
    [all...]
ProviderException.java 62 * detail message and cause.
66 * @param cause the cause (which is saved for later retrieval by the
68 * and indicates that the cause is nonexistent or unknown.)
71 public ProviderException(String message, Throwable cause) {
72 super(message, cause);
76 * Creates a <code>ProviderException</code> with the specified cause
77 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</tt>)
    [all...]
SignatureException.java 60 * detail message and cause.
64 * @param cause the cause (which is saved for later retrieval by the
66 * and indicates that the cause is nonexistent or unknown.)
69 public SignatureException(String message, Throwable cause) {
70 super(message, cause);
74 * Creates a <code>SignatureException</code> with the specified cause
75 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
77 * <tt>cause</tt>)
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CRLException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CRLException(String message, Throwable cause) {
71 super(message, cause);
75 * Creates a <code>CRLException</code> with the specified cause
76 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
78 * <tt>cause</tt>)
    [all...]
CertPathBuilderException.java 79 * detail message is set to ({@code cause==null ? null : cause.toString()})
81 * cause).
83 * @param cause the cause (which is saved for later retrieval by the
85 * permitted, and indicates that the cause is nonexistent or unknown.)
87 public CertPathBuilderException(Throwable cause) {
88 super(cause);
93 * detail message and cause.
96 * @param cause the cause (which is saved for later retrieval by th
    [all...]
CertStoreException.java 78 * cause, which may be useful for debugging. The detail message is
79 * set to (<code>cause==null ? null : cause.toString()</code>) (which
80 * typically contains the class and detail message of cause).
82 * @param cause the cause (which is saved for later retrieval by the
84 * permitted, and indicates that the cause is nonexistent or unknown.)
86 public CertStoreException(Throwable cause) {
87 super(cause);
92 * message and cause
    [all...]
CertificateEncodingException.java 60 * detail message and cause.
64 * @param cause the cause (which is saved for later retrieval by the
66 * and indicates that the cause is nonexistent or unknown.)
69 public CertificateEncodingException(String message, Throwable cause) {
70 super(message, cause);
75 * with the specified cause and a detail message of
76 * <tt>(cause==null ? null : cause.toString())</tt>
78 * <tt>cause</tt>)
    [all...]
CertificateException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CertificateException(String message, Throwable cause) {
71 super(message, cause);
75 * Creates a <code>CertificateException</code> with the specified cause
76 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
78 * <tt>cause</tt>)
    [all...]
CertificateParsingException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CertificateParsingException(String message, Throwable cause) {
71 super(message, cause);
76 * specified cause and a detail message of
77 * <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</tt>)
    [all...]

Completed in 149 milliseconds

1 2 3 45 6 7 8 91011>>