Searched defs:initCause (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPException.java78 initCause(cause);
87 initCause(cause);
152 public synchronized Throwable initCause(Throwable cause) { method in class:SOAPException
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslException.java85 initCause(ex);
98 * Override Throwable.initCause() to match getCause() by updating
101 public Throwable initCause(Throwable cause) { method in class:SaslException
102 super.initCause(cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/
H A DSOAPExceptionImpl.java83 initCause(cause);
92 initCause(cause);
160 public synchronized Throwable initCause(Throwable cause) method in class:SOAPExceptionImpl
/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerException.java109 public synchronized Throwable initCause(Throwable cause) { method in class:TransformerException
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMException.java116 public synchronized Throwable initCause(Throwable cause) { method in class:DTMException
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNamingException.java106 * The {@link #initCause(Throwable)} and {@link #getCause()} methods
112 * @see #initCause(Throwable)
332 * The {@link #initCause(Throwable)} method is now the preferred means
340 * @see #initCause
356 * @see #initCause(Throwable)
381 public Throwable initCause(Throwable cause) { method in class:NamingException
382 super.initCause(cause);
/openjdk7/jdk/src/share/classes/java/lang/
H A DThrowable.java89 * {@link #initCause(Throwable)} method. New throwable classes that
94 * Because the {@code initCause} method is public, it allows a cause to be
244 * call to {@link #initCause}.
256 * a call to {@link #initCause}.
401 * creation with the {@link #initCause(Throwable)} method. While it is
437 * new HighLevelException().initCause(le); // Legacy constructor
454 public synchronized Throwable initCause(Throwable cause) { method in class:Throwable
1003 * #initCause(Throwable) causes} another exception, the first
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DEnvHelp.java226 public static <T extends Throwable> T initCause(T throwable, method in class:EnvHelp
228 throwable.initCause(cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java1413 public CompletionFailure initCause(Throwable cause) { method in class:Symbol.CompletionFailure
1414 super.initCause(cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DNames.java136 public final Name initCause; field in class:Names
252 initCause = fromString("initCause");

Completed in 71 milliseconds