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

1234567891011>>

/openjdk10/langtools/test/tools/javac/
H A DT6265400.java56 Throwable cause = e.getCause();
/openjdk10/langtools/test/tools/javac/api/
H A DT6437138.java55 if (e.getCause() instanceof UnsupportedOperationException) {
/openjdk10/jdk/test/javax/management/remote/mandatory/serverError/
H A DJMXServerErrorTest.java155 if (!(jsee.getCause() instanceof KaefferError)) {
160 ": " + jsee.getCause());
173 if (!(jsee.getCause() instanceof KaefferError)) {
178 ": " + jsee.getCause());
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DSocketFactoryContactInfoListIteratorImpl.java94 if (ex.getCause() instanceof GetEndPointInfoAgainException) {
96 ((GetEndPointInfoAgainException) ex.getCause())
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/event/
H A DFocusEvent.java59 * retrieved by calling {@link #getCause}.
155 * @see #getCause()
363 ",opposite=" + getOppositeComponent() + ",cause=" + getCause();
372 public final Cause getCause() { method in class:FocusEvent
/openjdk10/jdk/test/java/rmi/registry/nonLocalRegistry/
H A DNonLocalRegistryTest.java100 while (!(t instanceof AccessException) && t.getCause() != null) {
101 t = t.getCause();
/openjdk10/jdk/test/javax/management/Introspector/
H A DGetMBeanInfoExceptionTest.java106 Throwable t = e.getCause();
112 t = t.getCause();
/openjdk10/jdk/test/javax/management/MBeanServer/
H A DMBeanTest.java128 t = t.getCause();
150 t = t.getCause();
/openjdk10/jdk/test/javax/management/loading/
H A DParserInfiniteLoopTest.java91 if (e.getCause() == null) {
95 } else if (!(e.getCause() instanceof IOException)) {
/openjdk10/jdk/test/javax/management/remote/nonLocalAccess/
H A DNonLocalJMXRemoteTest.java115 while (!(t instanceof AccessException) && t.getCause() != null) {
116 t = t.getCause();
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/ap/
H A DInlineAnnotationReaderImpl.java131 if( e.getCause() instanceof MirroredTypeException ) {
132 MirroredTypeException me = (MirroredTypeException)e.getCause();
150 if( e.getCause() instanceof MirroredTypesException ) {
151 MirroredTypesException me = (MirroredTypesException)e.getCause();
157 if( e.getCause() instanceof MirroredTypeException ) {
158 MirroredTypeException me = (MirroredTypeException)e.getCause();
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/
H A DAbstractDoclet.java120 throw (DocletException) e.getCause();
127 e.fileName.getPath(), e.getCause());
131 e.fileName.getPath(), e.getCause());
137 e.resource.getPath(), e.getCause());
146 reportInternalError(e.getCause());
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DSQLException.java162 * (which is saved for later retrieval by the <code>getCause()</code> method);
184 * (which is saved for later retrieval by the <code>getCause()</code> method);
207 * <code>getCause()</code> method); may be null indicating
233 * (which is saved for later retrieval by the <code>getCause()</code> method);
322 Throwable cause = firstException.getCause();
338 cause = cause.getCause();
342 cause = nextException.getCause();
/openjdk10/jdk/test/com/sun/security/auth/module/LdapLoginModule/
H A DCheckConfigs.java78 if (!(le.getCause() instanceof CommunicationException)) {
93 if (!(le.getCause() instanceof CommunicationException)) {
108 if (!(le.getCause() instanceof CommunicationException)) {
/openjdk10/jdk/test/java/net/httpclient/http2/
H A DTimeout.java145 if (e.getCause() instanceof HttpTimeoutException) {
146 System.out.println("expected exception: " + e.getCause());
148 throw new RuntimeException("Unexpected exception received: " + e.getCause(), e);
/openjdk10/jdk/test/sun/security/ssl/SSLContextImpl/
H A DBadTSProvider.java184 Throwable cause = se.getCause();
190 cause = cause.getCause();
196 cause = cause.getCause();
/openjdk10/jdk/test/java/awt/keyboard/AltPlusNumberKeyCombinationsTest/
H A DAltPlusNumberKeyCombinationsTest.java59 throw new RuntimeException("Test failed;", e.getCause());
110 throw new RuntimeException("Test failed;", e.getCause());
154 throw new RuntimeException("Test failed;", e.getCause());
190 throw new RuntimeException("Test failed;", e.getCause());
226 throw new RuntimeException("Test failed;", e.getCause());
262 throw new RuntimeException("Test failed;", e.getCause());
/openjdk10/hotspot/test/compiler/jvmci/
H A DSecurityRestrictionsTest.java164 while (t.getCause() != null) {
165 t = t.getCause();
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/istack/internal/logging/
H A DLogger.java383 if (logCause && exception.getCause() != null) {
384 logger.logp(Level.SEVERE, componentClassName, getCallerMethodName(), exception.getMessage(), exception.getCause());
398 if (exception.getCause() == null) {
401 logger.logp(Level.SEVERE, componentClassName, getCallerMethodName(), exception.getMessage(), exception.getCause());
458 if (logCause && exception.getCause() != null) {
459 logger.logp(level, componentClassName, getCallerMethodName(), exception.getMessage(), exception.getCause());
474 if (exception.getCause() == null) {
477 logger.logp(level, componentClassName, getCallerMethodName(), exception.getMessage(), exception.getCause());
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIXMasterCertPathValidator.java134 (cpve.getCause() != null) ? cpve.getCause() : cpve,
/openjdk10/jdk/test/java/awt/Focus/RequestFocusByCause/
H A DRequestFocusByCauseTest.java55 success = e.getCause() == FocusEvent.Cause.UNEXPECTED;
127 success = e.getCause() == FocusEvent.Cause.UNEXPECTED;
/openjdk10/jdk/test/java/lang/Throwable/
H A DStackTraceSerialization.java134 equal(t1.getCause(), t2.getCause()) &&
/openjdk10/jdk/test/java/lang/invoke/8022701/
H A DInvokeSeveralWays.java39 Throwable c = e.getCause();
58 Throwable c = e.getCause();
/openjdk10/jdk/test/java/lang/reflect/Generics/
H A DThreadSafety.java124 if (!(e.getCause() instanceof BrokenBarrierException)
126 !(e.getCause() instanceof TimeoutException)) {
/openjdk10/jdk/test/java/rmi/activation/nonLocalActivation/
H A DNonLocalActivationTest.java163 while (!(t instanceof AccessException) && t.getCause() != null) {
164 t = t.getCause();

Completed in 195 milliseconds

1234567891011>>