Searched refs:containedException (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerException.java60 /** Field containedException specifies a wrapped exception. May be null. */
61 Throwable containedException; field in class:TransformerException
70 return containedException;
80 return ((containedException == this)
82 : containedException);
111 if (this.containedException != null) {
120 this.containedException = cause;
134 this.containedException = null;
147 this.containedException = e;
167 this.containedException
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMException.java66 /** Field containedException specifies a wrapped exception. May be null.
68 Throwable containedException; field in class:DTMException
77 return containedException;
87 return ((containedException == this)
89 : containedException);
118 if ((this.containedException == null) && (cause != null)) {
127 this.containedException = cause;
141 this.containedException = null;
154 this.containedException = e;
174 this.containedException
[all...]

Completed in 627 milliseconds