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

123456789

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DWrongMethodTypeException.java65 * detail message and cause.
68 * @param cause the cause of the exception, or null.
71 /*non-public*/ WrongMethodTypeException(String s, Throwable cause) { argument
72 super(s, cause);
77 * cause.
79 * @param cause the cause of the exception, or null.
82 /*non-public*/ WrongMethodTypeException(Throwable cause) { argument
83 super(cause);
[all...]
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCoderMalfunctionError.java47 * @param cause
50 public CoderMalfunctionError(Exception cause) { argument
51 super(cause);
/openjdk7/jdk/src/share/classes/java/security/
H A DDigestException.java59 * 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) { argument
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</t
83 DigestException(Throwable cause) argument
[all...]
H A DGeneralSecurityException.java61 * 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) { argument
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</t
85 GeneralSecurityException(Throwable cause) argument
[all...]
H A DInvalidAlgorithmParameterException.java69 * 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) { argument
79 super(message, cause);
84 * specified cause and a detail message of
85 * <tt>(cause==null ? null : cause.toString())</tt>
87 * <tt>cause</t
94 InvalidAlgorithmParameterException(Throwable cause) argument
[all...]
H A DInvalidKeyException.java62 * 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) { argument
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</t
86 InvalidKeyException(Throwable cause) argument
[all...]
H A DKeyException.java63 * 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) { argument
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</t
87 KeyException(Throwable cause) argument
[all...]
H A DKeyManagementException.java72 * 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) { argument
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</t
96 KeyManagementException(Throwable cause) argument
[all...]
H A DKeyStoreException.java63 * 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) { argument
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</t
87 KeyStoreException(Throwable cause) argument
[all...]
H A DNoSuchAlgorithmException.java62 * 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) { argument
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</t
86 NoSuchAlgorithmException(Throwable cause) argument
[all...]
H A DProviderException.java62 * 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) { argument
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</t
86 ProviderException(Throwable cause) argument
[all...]
H A DSignatureException.java60 * 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) { argument
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</t
84 SignatureException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCRLException.java61 * 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) { argument
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</t
85 CRLException(Throwable cause) argument
[all...]
H A DCertPathBuilderException.java79 * 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) { argument
88 super(cause);
93 * detail message and cause.
96 * @param cause th
100 CertPathBuilderException(String msg, Throwable cause) argument
[all...]
H A DCertStoreException.java78 * 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) { argument
87 super(cause);
92 * message and cause
99 CertStoreException(String msg, Throwable cause) argument
[all...]
H A DCertificateEncodingException.java60 * 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) { argument
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</t
85 CertificateEncodingException(Throwable cause) argument
[all...]
H A DCertificateParsingException.java61 * 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) { argument
71 super(message, cause);
76 * specified cause and a detail message of
77 * <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</t
86 CertificateParsingException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DConcurrentModificationException.java90 * Constructs a new exception with the specified cause and a detail
91 * message of {@code (cause==null ? null : cause.toString())} (which
92 * typically contains the class and detail message of {@code cause}.
94 * @param cause the cause (which is saved for later retrieval by the
96 * permitted, and indicates that the cause is nonexistent or
100 public ConcurrentModificationException(Throwable cause) { argument
101 super(cause);
106 * cause
120 ConcurrentModificationException(String message, Throwable cause) argument
[all...]
H A DServiceConfigurationError.java76 * Constructs a new instance with the specified message and cause.
80 * @param cause The cause, or <tt>null</tt> if the cause is nonexistent
83 public ServiceConfigurationError(String msg, Throwable cause) { argument
84 super(msg, cause);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExecutionException.java52 * The cause is not initialized, and may subsequently be
59 * message. The cause is not initialized, and may subsequently be
70 * message and cause.
73 * @param cause the cause (which is saved for later retrieval by the
76 public ExecutionException(String message, Throwable cause) { argument
77 super(message, cause);
81 * Constructs an <tt>ExecutionException</tt> with the specified cause.
84 * (cause == null ? null : cause
91 ExecutionException(Throwable cause) argument
[all...]
H A DRejectedExecutionException.java50 * The cause is not initialized, and may subsequently be
57 * specified detail message. The cause is not initialized, and may
69 * specified detail message and cause.
72 * @param cause the cause (which is saved for later retrieval by the
75 public RejectedExecutionException(String message, Throwable cause) { argument
76 super(message, cause);
81 * specified cause. The detail message is set to: <pre> (cause ==
82 * null ? null : cause
88 RejectedExecutionException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DBackingStoreException.java49 * Constructs a BackingStoreException with the specified cause.
51 * @param cause the cause
53 public BackingStoreException(Throwable cause) { argument
54 super(cause);
H A DInvalidPreferencesFormatException.java43 * cause.
45 * @param cause the cause (which is saved for later retrieval by the
48 public InvalidPreferencesFormatException(Throwable cause) { argument
49 super(cause);
65 * detail message and cause.
69 * @param cause the cause (which is saved for later retrieval by the
72 public InvalidPreferencesFormatException(String message, Throwable cause) { argument
73 super(message, cause);
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DJMRuntimeException.java60 JMRuntimeException(String message, Throwable cause) { argument
61 super(message, cause);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDataBindingException.java40 public DataBindingException(String message, Throwable cause) { argument
41 super(message, cause);
44 public DataBindingException(Throwable cause) { argument
45 super(cause);

Completed in 80 milliseconds

123456789