Searched refs:getCause (Results 126 - 150 of 269) sorted by relevance

1234567891011

/openjdk7/jdk/test/javax/management/mxbean/
H A DExceptionDiagnosisTest.java191 Throwable cause = e.getCause();
228 for (Throwable t = e; t != null; t = t.getCause())
250 for ( ; t != null; t = t.getCause())
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDXMLPrinter.java113 throw (XMLStreamException) e.getCause();
126 throw (XMLStreamException) e.getCause();
139 throw (XMLStreamException) e.getCause();
567 if (e.getCause() instanceof SAXParseException) {
568 SAXParseException se = (SAXParseException) e.getCause();
580 if (e.getCause() instanceof SAXException) {
581 SAXException se = (SAXException) e.getCause();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DMain.java469 throw new RuntimeException(ex.getCause());
475 throw new RuntimeException(ex.getCause());
477 throw ex.getCause();
491 throw new RuntimeException(ex.getCause());
512 if (ex.getCause() != null && options.isSet("dev")) {
513 ex.getCause().printStackTrace(out);
538 ex.getCause().printStackTrace(out);
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DBasic.java133 throw new RuntimeException(x.getCause());
153 throw new RuntimeException(x.getCause());
255 if (!(x.getCause() instanceof ClosedChannelException))
265 if (!(x.getCause() instanceof ClosedChannelException))
275 if (!(x.getCause() instanceof ClosedChannelException))
420 Throwable cause = x.getCause();
/openjdk7/jdk/test/java/lang/Throwable/
H A DSuppressedExceptions.java53 if (iae.getCause() != throwable)
224 if (ise.getCause() != t2)
242 if (iae.getCause() != t3)
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DParserImplBase.java125 // Since exc wraps the actual exception, use exc.getCause()
127 throw wrapper.errorSettingField( exc.getCause(), name,
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertStore.java239 Throwable cause = e.getCause();
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DClientCommunicatorAdmin.java193 e = (Exception)EnvHelp.getCause(e);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DElement.java81 throw new RuntimeException(e.getCause());
/openjdk7/jdk/src/share/classes/com/oracle/net/
H A DSdp.java153 Throwable cause = x.getCause();
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPipeImpl.java143 throw (IOException)x.getCause();
/openjdk7/jdk/test/java/lang/annotation/
H A DParameterAnnotations.java114 catch (Throwable e) {throw e.getCause();}}
/openjdk7/jdk/test/java/nio/file/etc/
H A DExceptions.java84 IOException ioe = exc.getCause();
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DWrongPassword.java64 Throwable cause = e.getCause();
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotAttachProvider.java84 t = t.getCause();
/openjdk7/jdk/src/share/classes/sun/tools/jps/
H A DJps.java161 Throwable cause = e.getCause();
/openjdk7/jdk/test/java/util/Timer/
H A DDelayOverflow.java110 catch (Throwable e) {throw e.getCause();}}
/openjdk7/jdk/test/java/util/logging/
H A DLoggerSubclass.java95 catch (Throwable e) {throw e.getCause();}}
/openjdk7/jdk/test/javax/management/modelmbean/
H A DDescriptorSupportXMLTest.java86 final Throwable cause = e.getCause();
/openjdk7/jdk/test/javax/security/sasl/Sasl/
H A DPassSysProps.java91 Throwable t = se.getCause();
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DMoreKvno.java72 KrbException ke = (KrbException)gsse.getCause();
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java134 Throwable cause = pae.getCause();
266 throw e.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/sun/management/
H A DAgent.java393 final Throwable cause = x.getCause();
489 String msg = (ex.getCause() == null
491 : ex.getCause().getMessage());
/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerException.java67 * @see #getCause
78 public Throwable getCause() { method in class:TransformerException
97 * {@link #getCause()} method). (A <code>null</code> value is

Completed in 63 milliseconds

1234567891011