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