Searched defs:getCause (Results 51 - 54 of 54) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/lang/
H A DThrowable.java281 * {@link #getCause()} method). (A {@code null} value is
304 * {@link #getCause()} method). (A {@code null} value is
407 * all of which invoke the {@code getCause} method to determine the
414 public synchronized Throwable getCause() { method in class:Throwable
442 * {@link #getCause()} method). (A {@code null} value is
665 Throwable ourCause = getCause();
707 Throwable ourCause = getCause();
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DEnvHelp.java235 * {@link Throwable#getCause()} method (JDK Version >= 1.4)
237 * @return the cause if getCause() succeeded and the got value is not
240 public static Throwable getCause(Throwable t) { method in class:EnvHelp
244 java.lang.reflect.Method getCause =
245 t.getClass().getMethod("getCause", (Class<?>[]) null);
246 ret = (Throwable)getCause.invoke(t, (Object[]) null);
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java637 private Throwable getCause() { method in class:ResourceBundle.CacheKey
1322 throwMissingResourceException(baseName, locale, cacheKey.getCause());
1414 if (constKey.getCause() instanceof InterruptedException) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DErrorMsg.java250 public Throwable getCause() { method in class:ErrorMsg

Completed in 41 milliseconds

123