HomeSort by relevance Sort by last modified time
    Searched refs:containedException (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/javax/xml/transform/
TransformerException.java 54 /** Field containedException specifies a wrapped exception. May be null. */
55 Throwable containedException;
64 return containedException;
74 return ((containedException == this)
76 : containedException);
105 if (this.containedException != null) {
114 this.containedException = cause;
128 this.containedException = null;
141 this.containedException = e;
161 this.containedException = e
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 64 /** Field containedException specifies a wrapped exception. May be null.
66 Throwable containedException;
75 return containedException;
85 return ((containedException == this)
87 : containedException);
116 if ((this.containedException == null) && (cause != null)) {
125 this.containedException = cause;
139 this.containedException = null;
152 this.containedException = e;
172 this.containedException = e
    [all...]

Completed in 47 milliseconds