Searched refs:cause (Results 76 - 100 of 298) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilderException.java72 * about the cause, which may be useful for debugging. The detail message is
73 * set to (<code>cause==null ? null : cause.toString()</code>) (which
74 * typically contains the class and detail message of cause).
76 * @param cause the cause (which is saved for later retrieval by the
78 * permitted, and indicates that the cause is nonexistent or unknown.)
79 * root cause.
81 public SunCertPathBuilderException(Throwable cause) { argument
82 super(cause);
92 SunCertPathBuilderException(String msg, Throwable cause) argument
116 SunCertPathBuilderException(String msg, Throwable cause, AdjacencyList adjList) argument
[all...]
/openjdk7/jdk/test/javax/management/Introspector/
H A DNotCompliantCauseTest.java27 * @summary Test that NotCompliantMBeanException has a cause in case of
69 * Test that NotCompliantMBeanException has a cause in case of
82 public RuntimeTestException(String msg, Throwable cause) { argument
83 super(msg,cause);
85 public RuntimeTestException(Throwable cause) { argument
86 super(cause);
91 * Test that NotCompliantMBeanException has a cause in case of
106 Throwable cause = e.getCause();
107 if (cause == null)
109 "doesn't have any cause
[all...]
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathExpressionException.java46 * <p>The <code>cause</code> is not initialized.</p>
62 * with the specified <code>cause</code>.</p>
64 * <p>If <code>cause</code> is <code>null</code>,
67 * @param cause The cause.
69 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
71 public XPathExpressionException(Throwable cause) { argument
72 super(cause);
H A DXPathFactoryConfigurationException.java45 * <p>The <code>cause</code> is not initialized.</p>
61 * with the specified <code>cause</code>.</p>
63 * <p>If <code>cause</code> is <code>null</code>,
66 * @param cause The cause.
68 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
70 public XPathFactoryConfigurationException(Throwable cause) { argument
71 super(cause);
H A DXPathFunctionException.java45 * <p>The <code>cause</code> is not initialized.</p>
60 * <p>Constructs a new <code>XPathFunctionException</code> with the specified <code>cause</code>.</p>
62 * <p>If <code>cause</code> is <code>null</code>,
65 * @param cause The cause.
67 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
69 public XPathFunctionException(Throwable cause) { argument
70 super(cause);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DCausedFocusEvent.java32 * This class represents FocusEvents with a known "cause" - reason why this event happened. It can
34 * event with the cause can be constructed in two ways - explicitly through constructor of
35 * CausedFocusEvent class or implicitly, by calling appropriate requestFocusXXX method with "cause"
36 * parameter. The default cause is UNKNOWN.
56 private final Cause cause; field in class:CausedFocusEvent
59 return cause;
63 return "java.awt.FocusEvent[" + super.paramString() + ",cause=" + cause + "] on " + getSource();
67 Component opposite, Cause cause) {
69 if (cause
66 CausedFocusEvent(Component source, int id, boolean temporary, Component opposite, Cause cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DLinkageError.java60 * message and cause.
63 * @param cause the cause, may be {@code null}
66 public LinkageError(String s, Throwable cause) { argument
67 super(s, cause);
H A DTypeNotPresentException.java53 * with the specified cause.
56 * @param cause the exception that was thrown when the system attempted to
59 public TypeNotPresentException(String typeName, Throwable cause) { argument
60 super("Type " + typeName + " not present", cause);
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLDataException.java45 * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
79 * The <code>cause</code> is not initialized, and may subsequently be
96 * The <code>cause</code> is not initialized, and may subsequently be
111 * <code>cause</code>.
115 * <code>cause==null</code> or to <code>cause.toString()</code> if
116 * <code>cause!=null</code>.
118 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
119 * the cause i
122 SQLDataException(Throwable cause) argument
137 SQLDataException(String reason, Throwable cause) argument
152 SQLDataException(String reason, String SQLState, Throwable cause) argument
168 SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLFeatureNotSupportedException.java50 * The <code>cause</code> is not initialized, and may subsequently be
66 * The <code>cause</code> is not initialized, and may subsequently be
81 * The <code>cause</code> is not initialized, and may subsequently be
99 * The <code>cause</code> is not initialized, and may subsequently be
114 * with a given <code>cause</code>.
118 * <code>cause==null</code> or to <code>cause.toString()</code> if
119 * <code>cause!=null</code>.
121 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval bythe <code>getCause()</code> method); may be null indicating
122 * the cause i
125 SQLFeatureNotSupportedException(Throwable cause) argument
141 SQLFeatureNotSupportedException(String reason, Throwable cause) argument
157 SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) argument
174 SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLIntegrityConstraintViolationException.java45 * The <code>cause</code> is not initialized, and may subsequently be
61 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
117 * the cause i
120 SQLIntegrityConstraintViolationException(Throwable cause) argument
136 SQLIntegrityConstraintViolationException(String reason, Throwable cause) argument
152 SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) argument
169 SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLInvalidAuthorizationSpecException.java45 * The <code>cause</code> is not initialized, and may subsequently be
61 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
117 * the cause i
120 SQLInvalidAuthorizationSpecException(Throwable cause) argument
136 SQLInvalidAuthorizationSpecException(String reason, Throwable cause) argument
152 SQLInvalidAuthorizationSpecException(String reason, String SQLState, Throwable cause) argument
169 SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLNonTransientConnectionException.java32 * the operation is retried without the cause of the failure being corrected.
45 * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
77 * The <code>cause</code> is not initialized, and may subsequently be
95 * The <code>cause</code> is not initialized, and may subsequently be
110 * with a given <code>cause</code>.
114 * <code>cause==null</code> or to <code>cause.toString()</code> if
115 * <code>cause!=null</code>.
117 * @param cause th
121 SQLNonTransientConnectionException(Throwable cause) argument
137 SQLNonTransientConnectionException(String reason, Throwable cause) argument
153 SQLNonTransientConnectionException(String reason, String SQLState, Throwable cause) argument
170 SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLNonTransientException.java30 * of the same operation would fail unless the cause of the <code>SQLException</code>
43 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @param cause th
120 SQLNonTransientException(Throwable cause) argument
136 SQLNonTransientException(String reason, Throwable cause) argument
153 SQLNonTransientException(String reason, String SQLState, Throwable cause) argument
170 SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLRecoverableException.java46 * The <code>cause</code> is not initialized, and may subsequently be
62 * The <code>cause</code> is not initialized, and may subsequently be
77 * The <code>cause</code> is not initialized, and may subsequently be
95 * The <code>cause</code> is not initialized, and may subsequently be
110 * with a given <code>cause</code>.
114 * <code>cause==null</code> or to <code>cause.toString()</code> if
115 * <code>cause!=null</code>.
117 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
118 * the cause i
121 SQLRecoverableException(Throwable cause) argument
137 SQLRecoverableException(String reason, Throwable cause) argument
153 SQLRecoverableException(String reason, String SQLState, Throwable cause) argument
170 SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLSyntaxErrorException.java44 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
75 * The <code>cause</code> is not initialized, and may subsequently be
93 * The <code>cause</code> is not initialized, and may subsequently be
108 * with a given <code>cause</code>.
112 * <code>cause==null</code> or to <code>cause.toString()</code> if
113 * <code>cause!=null</code>.
115 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval bythe <code>getCause()</code> method); may be null indicating
116 * the cause i
119 SQLSyntaxErrorException(Throwable cause) argument
135 SQLSyntaxErrorException(String reason, Throwable cause) argument
151 SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) argument
168 SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTimeoutException.java42 * The <code>cause</code> is not initialized, and may subsequently be
58 * The <code>cause</code> is not initialized, and may subsequently be
73 * The <code>cause</code> is not initialized, and may subsequently be
91 * The <code>cause</code> is not initialized, and may subsequently be
106 * with a given <code>cause</code>.
110 * <code>cause==null</code> or to <code>cause.toString()</code> if
111 * <code>cause!=null</code>.
113 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
114 * the cause i
117 SQLTimeoutException(Throwable cause) argument
133 SQLTimeoutException(String reason, Throwable cause) argument
149 SQLTimeoutException(String reason, String SQLState, Throwable cause) argument
166 SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransactionRollbackException.java44 * The <code>cause</code> is not initialized, and may subsequently be
60 * The <code>cause</code> is not initialized, and may subsequently be
75 * The <code>cause</code> is not initialized, and may subsequently be
93 * The <code>cause</code> is not initialized, and may subsequently be
108 * with a given <code>cause</code>.
112 * <code>cause==null</code> or to <code>cause.toString()</code> if
113 * <code>cause!=null</code>.
115 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
116 * the cause i
119 SQLTransactionRollbackException(Throwable cause) argument
135 SQLTransactionRollbackException(String reason, Throwable cause) argument
151 SQLTransactionRollbackException(String reason, String SQLState, Throwable cause) argument
168 SQLTransactionRollbackException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransientConnectionException.java45 * The <code>cause</code> is not initialized, and may subsequently be
61 * The <code>cause</code> is not initialized, and may subsequently be
76 * The <code>cause</code> is not initialized, and may subsequently be
94 * The <code>cause</code> is not initialized, and may subsequently be
109 * with a given <code>cause</code>.
113 * <code>cause==null</code> or to <code>cause.toString()</code> if
114 * <code>cause!=null</code>.
116 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
117 * the cause i
120 SQLTransientConnectionException(Throwable cause) argument
136 SQLTransientConnectionException(String reason, Throwable cause) argument
152 SQLTransientConnectionException(String reason, String SQLState, Throwable cause) argument
169 SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransientException.java43 * The <code>cause</code> is not initialized, and may subsequently be
59 * The <code>cause</code> is not initialized, and may subsequently be
74 * The <code>cause</code> is not initialized, and may subsequently be
92 * The <code>cause</code> is not initialized, and may subsequently be
107 * with a given <code>cause</code>.
111 * <code>cause==null</code> or to <code>cause.toString()</code> if
112 * <code>cause!=null</code>.
114 * @param cause the underlying reason for this <code>SQLException</code> (which is saved for later retrieval by the <code>getCause()</code> method); may be null indicating
115 * the cause i
118 SQLTransientException(Throwable cause) argument
134 SQLTransientException(String reason, Throwable cause) argument
150 SQLTransientException(String reason, String SQLState, Throwable cause) argument
167 SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
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/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);
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DIIOException.java46 * <code>String</code>. No underlying cause is set;
60 * underlying cause.
63 * @param cause the <code>Throwable</code> (<code>Error</code> or
69 public IIOException(String message, Throwable cause) { argument
71 initCause(cause);
/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/com/sun/xml/internal/ws/policy/privateutil/
H A DRuntimePolicyUtilsException.java38 RuntimePolicyUtilsException(final String message, final Throwable cause) { argument
39 super(message, cause);

Completed in 109 milliseconds

1234567891011>>