7 instantiations of XmlNodeException
Microsoft.Web.XmlTransform (7)
XmlNodeException.cs (1)
26return new XmlNodeException(ex, node);
XmlTransform.cs (1)
331throw new XmlNodeException(message, matchFailureContext.Node);
XmlTransformation.cs (4)
310throw new XmlNodeException(string.Format(System.Globalization.CultureInfo.CurrentCulture,Resources.XMLTRANSFORMATION_ImportUnknownAttribute, attribute.Name), attribute); 314throw new XmlNodeException(string.Format(System.Globalization.CultureInfo.CurrentCulture,Resources.XMLTRANSFORMATION_ImportAttributeConflict), context.Element); 317throw new XmlNodeException(string.Format(System.Globalization.CultureInfo.CurrentCulture,Resources.XMLTRANSFORMATION_ImportMissingAssembly), context.Element); 320throw new XmlNodeException(string.Format(System.Globalization.CultureInfo.CurrentCulture,Resources.XMLTRANSFORMATION_ImportMissingNamespace), context.Element);
XmlTransformationLogger.cs (1)
181throw new XmlNodeException(String.Format(CultureInfo.CurrentCulture, message, messageArgs), referenceNode);
7 references to XmlNodeException
Microsoft.Web.XmlTransform (7)
XmlElementContext.cs (2)
251return XmlNodeException.Wrap(ex, Element); 255return XmlNodeException.Wrap(ex, node);
XmlNodeException.cs (1)
20if (ex is XmlNodeException) {
XmlTransform.cs (1)
218Log.LogErrorFromException(XmlNodeException.Wrap(ex, context.TransformAttribute));
XmlTransformation.cs (1)
238return XmlNodeException.Wrap(ex, context.Node);
XmlTransformationLogger.cs (2)
32XmlNodeException nodeException = ex as XmlNodeException;