Searched refs:getCause (Results 26 - 50 of 269) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/java/rmi/
H A DRemoteException.java39 * may be accessed via the {@link Throwable#getCause()} method, as well as
58 * The {@link Throwable#getCause()} method is now the preferred means of
119 public Throwable getCause() { method in class:RemoteException
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationException.java35 * accessed via the {@link Throwable#getCause()} method, as well as
51 * The {@link Throwable#getCause()} method is now the preferred means of
115 public Throwable getCause() { method in class:ActivationException
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DServerCloneException.java36 * accessed via the {@link Throwable#getCause()} method, as well as
53 * The {@link Throwable#getCause()} method is now the preferred means of
109 public Throwable getCause() { method in class:ServerCloneException
/openjdk7/jdk/src/share/classes/java/security/
H A DPrivilegedActionException.java43 * <i>cause</i>, and may be accessed via the {@link Throwable#getCause()}
75 * The {@link Throwable#getCause()} method is now the preferred means of
97 public Throwable getCause() { method in class:PrivilegedActionException
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanException.java86 public Throwable getCause() { method in class:MBeanException
H A DReflectionException.java84 public Throwable getCause() { method in class:ReflectionException
H A DRuntimeErrorException.java81 public Throwable getCause() { method in class:RuntimeErrorException
H A DRuntimeMBeanException.java84 public Throwable getCause() { method in class:RuntimeMBeanException
H A DRuntimeOperationsException.java83 public Throwable getCause() { method in class:RuntimeOperationsException
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicationException.java74 return getCause();
/openjdk7/jdk/src/share/classes/com/sun/java/browser/dom/
H A DDOMAccessException.java82 public Throwable getCause() method in class:DOMAccessException
H A DDOMUnsupportedException.java82 public Throwable getCause() method in class:DOMUnsupportedException
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DBug6355009.java41 while ((cause = cause.getCause()) != null) {
/openjdk7/jdk/test/java/util/Locale/
H A Dbug6312358.java51 Throwable cause = exc.getCause();
62 Throwable cause = exc.getCause();
73 Throwable cause = exc.getCause();
/openjdk7/jdk/test/javax/management/Introspector/
H A DNotCompliantCauseTest.java106 Throwable cause = e.getCause();
110 while (cause.getCause() != null) {
112 cause = cause.getCause();
/openjdk7/jdk/test/java/lang/Throwable/
H A DChainedExceptions.java19 Throwable mid = e.getCause();
28 Throwable low = mid.getCause();
39 if (low.getCause() != null)
/openjdk7/jaxp/src/javax/xml/parsers/
H A DFactoryConfigurationError.java132 public Throwable getCause() { method in class:FactoryConfigurationError
/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerFactoryConfigurationError.java127 public Throwable getCause() { method in class:TransformerFactoryConfigurationError
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslException.java80 * @see #getCause
90 * Override Throwable.getCause() to ensure deserialized object from
91 * JSR 28 would return same value for getCause() (i.e., _exception).
93 public Throwable getCause() { method in class:SaslException
98 * Override Throwable.initCause() to match getCause() by updating
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DKeySelectorException.java114 public Throwable getCause() { method in class:KeySelectorException
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DXMLStreamException2.java60 public Throwable getCause() { method in class:XMLStreamException2
/openjdk7/jdk/test/java/beans/EventHandler/
H A DTest6277266.java57 if (exception.getCause() instanceof SecurityException){
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DCNFException.java58 Throwable cause = e.getCause();
/openjdk7/jdk/test/java/net/URL/
H A DB6529759.java37 if (e.getCause() == null) {

Completed in 59 milliseconds

1234567891011