Searched defs:getCause (Results 1 - 12 of 12) sorted by last modified time

/libcore/ojluni/src/main/java/java/util/
H A DResourceBundle.java687 private Throwable getCause() { method in class:ResourceBundle.CacheKey
1381 throwMissingResourceException(baseName, locale, cacheKey.getCause());
1473 if (constKey.getCause() instanceof InterruptedException) {
/libcore/ojluni/src/main/java/java/nio/file/
H A DDirectoryIteratorException.java37 * IOException} using the {@link #getCause() getCause()} method.
68 public IOException getCause() { method in class:DirectoryIteratorException
69 return (IOException)super.getCause();
83 Throwable cause = super.getCause();
/libcore/ojluni/src/main/java/java/security/
H A DPrivilegedActionException.java47 * <i>cause</i>, and may be accessed via the {@link Throwable#getCause()}
79 * The {@link Throwable#getCause()} method is now the preferred means of
101 public Throwable getCause() { method in class:PrivilegedActionException
/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/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.java274 * {@link #getCause()} method). (A {@code null} value is
297 * {@link #getCause()} method). (A {@code null} value is
400 * all of which invoke the {@code getCause} method to determine the
407 public synchronized Throwable getCause() { method in class:Throwable
435 * {@link #getCause()} method). (A {@code null} value is
658 Throwable ourCause = getCause();
699 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

Completed in 410 milliseconds