AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.7" />

.NET API 1,204,224 bytes

 DomException

public sealed class DomException : Exception, IDomException
Represents a DOM exception.
using AngleSharp.Extensions; using System; namespace AngleSharp.Dom { public sealed class DomException : Exception, IDomException { public string Name { get; set; } public int Code { get; set; } public DomException(DomError code) : base(code.GetMessage()) { Code = (int)code; Name = code.ToString(); } } }