Searched refs:getCause (Results 101 - 125 of 269) sorted by relevance

1234567891011

/openjdk7/jdk/test/javax/management/mxbean/
H A DComparatorExceptionTest.java76 t = t.getCause();
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DProtocolRedirect.java75 throw new RuntimeException(io.getCause());
/openjdk7/jdk/src/share/classes/javax/security/auth/login/
H A DLoginContext.java835 if (ite.getCause() instanceof PendingException &&
859 throw (PendingException)ite.getCause();
861 } else if (ite.getCause() instanceof LoginException) {
863 le = (LoginException)ite.getCause();
865 } else if (ite.getCause() instanceof SecurityException) {
877 ite.getCause().toString());
883 ite.getCause().printStackTrace
H A DConfiguration.java276 ee.getCause().getMessage() +
277 "\n").initCause(ee.getCause());
500 Throwable cause = nsae.getCause();
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DMissingClassTest.java176 Throwable cause = e.getCause();
178 cause = cause.getCause();
200 Throwable wrapped = e.getCause();
202 wrapped = wrapped.getCause();
253 Throwable cause = e.getCause();
255 cause = cause.getCause();
281 " (cause: " + e.getCause() + ")");
298 " (cause: " + e.getCause() + ")");
313 " (cause: " + e.getCause() + ")");
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java323 if (! (thrown.getCause() instanceof RuntimeException)) {
326 "got <"+thrown.getCause()+">");
329 "got <"+thrown.getCause()+">");
341 if (! (thrown.getCause() instanceof Exception)) {
344 "got <"+thrown.getCause()+">");
347 "got <"+thrown.getCause()+">");
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDefaultErrorHandler.java280 cause = ((TransformerException)cause).getCause();
320 cause = ((TransformerException)cause).getCause();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLContextImpl/
H A DBadKSProvider.java183 Throwable cause = se.getCause();
189 cause = cause.getCause();
H A DBadTSProvider.java183 Throwable cause = se.getCause();
189 cause = cause.getCause();
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DThrow.java101 equal(c.getClass(), ee.getCause().getClass());
112 check(c.getClass().isInstance(ee.getCause()));
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DReflect.java114 if (IOException.class.isInstance(x.getCause()))
115 throw (IOException)x.getCause();
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAsynchronousChannelProvider.java120 if (sce.getCause() instanceof SecurityException) {
H A DSelectorProvider.java120 if (sce.getCause() instanceof SecurityException) {
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIIIOPServerImpl.java154 throw (IOException) pae.getCause();
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNamingException.java52 * <i>cause</i> returned by the {@link Throwable#getCause()} method.
106 * The {@link #initCause(Throwable)} and {@link #getCause()} methods
113 * @see #getCause
313 * The {@link #getCause()} method is now the preferred means of obtaining
321 * @see #getCause
359 public Throwable getCause() { method in class:NamingException
371 * the {@link #getCause()} method. A <tt>null</tt> value
378 * @see #getCause
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/spi/
H A DHttpServerProvider.java109 if (sce.getCause() instanceof SecurityException) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DConsoleErrorReporter.java58 if((e.getSystemId() == null && e.getPublicId() == null) && (e.getCause() instanceof UnknownHostException)) {
/openjdk7/jdk/test/java/rmi/RemoteException/chaining/
H A DChaining.java45 if (t.getCause() != cause) {
46 throw new RuntimeException("getCause value does not match");
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DStartDateTest.java122 System.out.println(s + " " + e.getCause());
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DBadControlsTest.java88 if (!(e.getCause() instanceof NullPointerException)) {
/openjdk7/jdk/test/javax/management/modelmbean/
H A DExoticTargetTypeTest.java96 Throwable cause = e.getCause();
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAbstractPerfDataBuffer.java203 Throwable cause = e.getCause();
/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/test/com/sun/jmx/snmp/
H A DTimeTicksWrapping.java119 final Throwable cause = x.getCause();
131 final Throwable cause = x.getCause();
143 final Throwable cause = x.getCause();
/openjdk7/jdk/test/javax/management/ObjectInstance/
H A DMBeanInfoFailTest.java145 if (x.getCause() instanceof UnspeakableException)
147 + x.getCause());
149 System.err.println("Unexpected trouble: " + x.getCause());

Completed in 63 milliseconds

1234567891011