Searched refs:cause (Results 51 - 75 of 298) sorted by relevance

1234567891011>>

/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 DCertificateException.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 CertificateException(String message, Throwable cause) { argument
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</t
85 CertificateException(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/security/spec/
H A DInvalidKeySpecException.java67 * detail message and cause.
71 * @param cause the cause (which is saved for later retrieval by the
73 * and indicates that the cause is nonexistent or unknown.)
76 public InvalidKeySpecException(String message, Throwable cause) { argument
77 super(message, cause);
81 * Creates a <code>InvalidKeySpecException</code> with the specified cause
82 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
84 * <tt>cause</t
91 InvalidKeySpecException(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...]
/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 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/com/sun/tools/hat/internal/oql/
H A DOQLException.java44 public OQLException(String msg, Throwable cause) { argument
45 super(msg, cause);
48 public OQLException(Throwable cause) { argument
49 super(cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DAccessorException.java55 public AccessorException(String message, Throwable cause) { argument
56 super(message, cause);
59 public AccessorException(Throwable cause) { argument
60 super(cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPVersionMismatchException.java56 * @param cause a <code>Throwable</code> object that is to
59 public SOAPVersionMismatchException(String reason, Throwable cause) { argument
60 super(reason, cause);
67 public SOAPVersionMismatchException(Throwable cause) { argument
68 super(cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEParsingException.java42 * detail message. The cause is not initialized.
50 * message. The cause is not initialized.
61 * message and cause.
65 * @param cause The cause which is saved for the later
68 public MIMEParsingException(String message, Throwable cause) { argument
69 super(message, cause);
73 * Constructs a new WebServiceException with the specified cause
74 * and a detail message of <tt>(cause==null ? null :
75 * cause
84 MIMEParsingException(Throwable cause) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DIllegalAnnotationException.java38 public IllegalAnnotationException(Throwable cause) { argument
39 super(cause);
42 public IllegalAnnotationException(String message, Throwable cause) { argument
43 super(message, cause);
H A DIllegalSignatureException.java38 public IllegalSignatureException(String message, Throwable cause) { argument
39 super(message, cause);
42 public IllegalSignatureException(Throwable cause) { argument
43 super(cause);
H A DTxwException.java36 public TxwException(Throwable cause) { argument
37 super(cause);
40 public TxwException(String message, Throwable cause) { argument
41 super(message, cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyException.java38 public PolicyException(String message, Throwable cause) { argument
39 super(message, cause);
43 public PolicyException(Throwable cause) { argument
44 super(cause);
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DInvalidConstantPoolFormatException.java34 public InvalidConstantPoolFormatException(String message,Throwable cause) { argument
35 super(message,cause);
42 public InvalidConstantPoolFormatException(Throwable cause) { argument
43 super(cause);
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DMonitorException.java54 * Create a MonitorException with the given message and cause.
57 * @param cause the exception causing this exception.
59 public MonitorException(String message, Throwable cause) { argument
60 super(message, cause);
64 * Create an InstrumentationException with the given cause.
66 * @param cause the exception causing this exception.
68 public MonitorException(Throwable cause) { argument
69 super(cause);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DProtocolException.java38 * cause is not initialized, and may subsequently be initialized by a call
47 * The cause is not initialized, and may subsequently be initialized by a
59 * cause.
61 * Note that the detail message associated with cause is not automatically
66 * @param cause the cause (which is saved for later retrieval by the
68 * that the cause is nonexistent or unknown.)
70 public ProtocolException(String message, Throwable cause) { argument
71 super(message, cause);
75 * Constructs a new runtime exception with the specified cause an
85 ProtocolException(Throwable cause) argument
[all...]
H A DWebServiceException.java37 * detail message. The cause is not initialized.
44 * message. The cause is not initialized.
53 * message and cause.
57 * @param cause The cause which is saved for the later
60 public WebServiceException(String message, Throwable cause) { argument
61 super(message,cause);
64 /** Constructs a new WebServiceException with the specified cause
65 * and a detail message of <tt>(cause==null ? null :
66 * cause
75 WebServiceException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DMarshalException.java42 * <p>A <code>MarshalException</code> can contain a cause: another
62 private Throwable cause; field in class:MarshalException
84 * specified detail message and cause.
86 * <code>cause</code> is <i>not</i> automatically incorporated in
90 * @param cause the cause (A <tt>null</tt> value is permitted, and
91 * indicates that the cause is nonexistent or unknown.)
93 public MarshalException(String message, Throwable cause) { argument
95 this.cause = cause;
107 MarshalException(Throwable cause) argument
[all...]
H A DNoSuchMechanismException.java42 * <p>A <code>NoSuchMechanismException</code> can contain a cause: another
63 private Throwable cause; field in class:NoSuchMechanismException
85 * specified detail message and cause.
87 * <code>cause</code> is <i>not</i> automatically incorporated in
91 * @param cause the cause (A <tt>null</tt> value is permitted, and
92 * indicates that the cause is nonexistent or unknown.)
94 public NoSuchMechanismException(String message, Throwable cause) { argument
96 this.cause = cause;
108 NoSuchMechanismException(Throwable cause) argument
[all...]

Completed in 102 milliseconds

1234567891011>>