HomeSort by relevance Sort by last modified time
    Searched refs:WrappedRuntimeException (Results 1 - 25 of 37) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
WrappedRuntimeException.java 19 * $Id: WrappedRuntimeException.java 468654 2006-10-28 07:09:23Z minchau $
35 public final class WrappedRuntimeException extends RuntimeException
44 * Construct a WrappedRuntimeException from a
49 public WrappedRuntimeException(Exception e)
58 * Constructor WrappedRuntimeException
64 public WrappedRuntimeException(String msg, Exception e)
  /external/apache-xml/src/main/java/org/apache/xml/utils/
WrappedRuntimeException.java 19 * $Id: WrappedRuntimeException.java 468655 2006-10-28 07:12:06Z minchau $
28 public class WrappedRuntimeException extends RuntimeException
37 * Construct a WrappedRuntimeException from a
42 public WrappedRuntimeException(Exception e)
51 * Constructor WrappedRuntimeException
57 public WrappedRuntimeException(String msg, Exception e)
ObjectPool.java 70 throw new WrappedRuntimeException(cnfe);
DefaultErrorHandler.java 340 else if(cause instanceof WrappedRuntimeException)
341 cause = ((WrappedRuntimeException)cause).getException();
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XBooleanStatic.java 66 throw new org.apache.xml.utils.WrappedRuntimeException(te);
XBoolean.java 164 throw new org.apache.xml.utils.WrappedRuntimeException(te);
XObjectFactory.java 117 throw new org.apache.xml.utils.WrappedRuntimeException(ex);
131 throw new org.apache.xml.utils.WrappedRuntimeException(ex);
XNumber.java 411 throw new org.apache.xml.utils.WrappedRuntimeException(te);
XRTreeFrag.java 297 throw new org.apache.xml.utils.WrappedRuntimeException(te);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
IteratorPool.java 26 import org.apache.xml.utils.WrappedRuntimeException;
98 throw new WrappedRuntimeException(ex);
FilterExprIteratorSimple.java 92 throws org.apache.xml.utils.WrappedRuntimeException
130 throw new org.apache.xml.utils.WrappedRuntimeException(se);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3SerializerImpl.java 28 import org.apache.xml.serializer.utils.WrappedRuntimeException;
113 throw new WrappedRuntimeException(se);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 189 throw new org.apache.xml.utils.WrappedRuntimeException(e);
DTMNodeIterator.java 78 throw new org.apache.xml.utils.WrappedRuntimeException(cnse);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 35 import org.apache.xml.serializer.utils.WrappedRuntimeException;
322 throw new WrappedRuntimeException(
391 throw new WrappedRuntimeException(
408 throw new WrappedRuntimeException(
SerializerFactory.java 88 * @throws WrappedRuntimeException if an exception is thrown while trying to find serializer
179 throw new org.apache.xml.serializer.utils.WrappedRuntimeException(e);
Encodings.java 388 throw new org.apache.xml.serializer.utils.WrappedRuntimeException(mue);
392 throw new org.apache.xml.serializer.utils.WrappedRuntimeException(ioe);
CharInfo.java 41 import org.apache.xml.serializer.utils.WrappedRuntimeException;
522 throw new WrappedRuntimeException(te);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncPosition.java 93 throw new org.apache.xml.utils.WrappedRuntimeException(cnse);
FuncSystemProperty.java 183 throw new org.apache.xml.utils.WrappedRuntimeException(ex);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 291 instanceof org.apache.xml.utils.WrappedRuntimeException)
294 ((org.apache.xml.utils.WrappedRuntimeException) throwable).getException();
300 throw new org.apache.xml.utils.WrappedRuntimeException(
335 if (e instanceof org.apache.xml.utils.WrappedRuntimeException)
336 e = ((org.apache.xml.utils.WrappedRuntimeException) e).getException();
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyTable.java 33 import org.apache.xml.utils.WrappedRuntimeException;
225 throw new WrappedRuntimeException(te);
TransformerIdentityImpl.java 487 catch (org.apache.xml.utils.WrappedRuntimeException wre)
492 instanceof org.apache.xml.utils.WrappedRuntimeException)
495 ((org.apache.xml.utils.WrappedRuntimeException) throwable).getException();
885 throw new org.apache.xml.utils.WrappedRuntimeException(te);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 352 while (e instanceof org.apache.xml.utils.WrappedRuntimeException)
354 e = ((org.apache.xml.utils.WrappedRuntimeException) e).getException();
427 while (e instanceof org.apache.xml.utils.WrappedRuntimeException)
429 e = ((org.apache.xml.utils.WrappedRuntimeException) e).getException();
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 149 // further execution by throwing WrappedRuntimeException
150 throw new org.apache.xml.utils.WrappedRuntimeException ( xfe );
201 // further execution by throwing WrappedRuntimeException
202 throw new org.apache.xml.utils.WrappedRuntimeException ( xfe );

Completed in 872 milliseconds

1 2