System.Xml.Schema.XmlSchemaException
namespace System.Xml.Schema
{
public class XmlSchemaException : SystemException
{
public int LineNumber { get; }
public int LinePosition { get; }
public XmlSchemaObject SourceSchemaObject { get; }
public string SourceUri { get; }
public XmlSchemaException();
protected XmlSchemaException(SerializationInfo info, StreamingContext context);
public XmlSchemaException(string message);
public XmlSchemaException(string message, Exception innerException);
public XmlSchemaException(string message, Exception innerException, int lineNumber, int linePosition);
}
}