Searched defs:getCause (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathException.java74 public Throwable getCause() { method in class:XPathException
79 if( getCause() != null ) {
80 getCause().printStackTrace(s);
92 if( getCause() != null ) {
93 getCause().printStackTrace(s);
/libcore/ojluni/src/main/java/java/io/
H A DUncheckedIOException.java71 public IOException getCause() { method in class:UncheckedIOException
72 return (IOException) super.getCause();
86 Throwable cause = super.getCause();
H A DWriteAbortedException.java40 * <i>cause</i>, and may be accessed via the {@link Throwable#getCause()}
53 * The {@link Throwable#getCause()} method is now the preferred means of
90 public Throwable getCause() { method in class:WriteAbortedException
/libcore/ojluni/src/main/java/java/lang/
H A DClassNotFoundException.java45 * Throwable#getCause()} method, as well as the aforementioned "legacy method."
104 * The {@link Throwable#getCause()} method is now the preferred means of
122 public Throwable getCause() { method in class:ClassNotFoundException
H A DExceptionInInitializerError.java38 * and may be accessed via the {@link Throwable#getCause()} method, as well
103 * The {@link Throwable#getCause()} method is now the preferred means of
123 public Throwable getCause() { method in class:ExceptionInInitializerError
H A DThrowable.java273 * {@link #getCause()} method). (A {@code null} value is
296 * {@link #getCause()} method). (A {@code null} value is
399 * all of which invoke the {@code getCause} method to determine the
406 public synchronized Throwable getCause() { method in class:Throwable
434 * {@link #getCause()} method). (A {@code null} value is
657 Throwable ourCause = getCause();
698 Throwable ourCause = getCause();
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DInvocationTargetException.java36 * and may be accessed via the {@link Throwable#getCause()} method,
92 * The {@link Throwable#getCause()} method is now the preferred means of
108 public Throwable getCause() { method in class:InvocationTargetException
H A DUndeclaredThrowableException.java51 * Throwable#getCause()} method, as well as the aforementioned "legacy
99 * The {@link Throwable#getCause()} method is now the preferred means of
116 public Throwable getCause() { method in class:UndeclaredThrowableException
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformerException.java61 * @see #getCause
72 public Throwable getCause() { method in class:TransformerException
91 * {@link #getCause()} method). (A <tt>null</tt> value is
/libcore/ojluni/src/main/java/java/util/
H A DResourceBundle.java639 private Throwable getCause() { method in class:ResourceBundle.CacheKey
1324 throwMissingResourceException(baseName, locale, cacheKey.getCause());
1416 if (constKey.getCause() instanceof InterruptedException) {

Completed in 338 milliseconds