Searched refs:WrappedRuntimeException (Results 1 - 25 of 37) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DWrappedRuntimeException.java19 * $Id: WrappedRuntimeException.java 468654 2006-10-28 07:09:23Z minchau $
35 public final class WrappedRuntimeException extends RuntimeException class in inherits:RuntimeException
44 * Construct a WrappedRuntimeException from a
49 public WrappedRuntimeException(Exception e) method in class:WrappedRuntimeException
58 * Constructor WrappedRuntimeException
64 public WrappedRuntimeException(String msg, Exception e) method in class:WrappedRuntimeException
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DWrappedRuntimeException.java19 * $Id: WrappedRuntimeException.java 468655 2006-10-28 07:12:06Z minchau $
28 public class WrappedRuntimeException extends RuntimeException class in inherits:RuntimeException
37 * Construct a WrappedRuntimeException from a
42 public WrappedRuntimeException(Exception e) method in class:WrappedRuntimeException
51 * Constructor WrappedRuntimeException
57 public WrappedRuntimeException(String msg, Exception e) method in class:WrappedRuntimeException
H A DObjectPool.java70 throw new WrappedRuntimeException(cnfe);
H A DDefaultErrorHandler.java340 else if(cause instanceof WrappedRuntimeException)
341 cause = ((WrappedRuntimeException)cause).getException();
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBooleanStatic.java66 throw new org.apache.xml.utils.WrappedRuntimeException(te);
H A DXBoolean.java164 throw new org.apache.xml.utils.WrappedRuntimeException(te);
H A DXObjectFactory.java117 throw new org.apache.xml.utils.WrappedRuntimeException(ex);
131 throw new org.apache.xml.utils.WrappedRuntimeException(ex);
H A DXNumber.java411 throw new org.apache.xml.utils.WrappedRuntimeException(te);
H A DXRTreeFrag.java297 throw new org.apache.xml.utils.WrappedRuntimeException(te);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DIteratorPool.java26 import org.apache.xml.utils.WrappedRuntimeException;
98 throw new WrappedRuntimeException(ex);
H A DFilterExprIteratorSimple.java92 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/
H A DDOM3SerializerImpl.java28 import org.apache.xml.serializer.utils.WrappedRuntimeException;
113 throw new WrappedRuntimeException(se);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIteratorBase.java189 throw new org.apache.xml.utils.WrappedRuntimeException(e);
H A DDTMNodeIterator.java78 throw new org.apache.xml.utils.WrappedRuntimeException(cnse);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertiesFactory.java35 import org.apache.xml.serializer.utils.WrappedRuntimeException;
322 throw new WrappedRuntimeException(
391 throw new WrappedRuntimeException(
408 throw new WrappedRuntimeException(
H A DSerializerFactory.java88 * @throws WrappedRuntimeException if an exception is thrown while trying to find serializer
179 throw new org.apache.xml.serializer.utils.WrappedRuntimeException(e);
H A DEncodings.java388 throw new org.apache.xml.serializer.utils.WrappedRuntimeException(mue);
392 throw new org.apache.xml.serializer.utils.WrappedRuntimeException(ioe);
H A DCharInfo.java41 import org.apache.xml.serializer.utils.WrappedRuntimeException;
522 throw new WrappedRuntimeException(te);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncPosition.java93 throw new org.apache.xml.utils.WrappedRuntimeException(cnse);
H A DFuncSystemProperty.java183 throw new org.apache.xml.utils.WrappedRuntimeException(ex);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DFuncDocument.java291 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/
H A DKeyTable.java33 import org.apache.xml.utils.WrappedRuntimeException;
225 throw new WrappedRuntimeException(te);
H A DTransformerIdentityImpl.java487 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);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPath.java352 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/
H A DJAXPExtensionsProvider.java149 // 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 196 milliseconds

12