Class ParseException
This exception is thrown by CSS and HTML parsers when finding a problem in a document which cannot be resolved by the parser internally.
Inheritance
System.Object
ParseException
Namespace: Syncfusion.HTMLUI.Base
Assembly: Syncfusion.HTMLUI.Base.dll
Syntax
public class ParseException : ApplicationException
Constructors
ParseException()
Overloaded constructor.
Declaration
public ParseException()
ParseException(Exception)
Create exception based on other exception - Wrap inner exception.
Declaration
public ParseException(Exception inner)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Exception | inner | Inner exception. |
ParseException(String)
Constructor with a user specified exception message.
Declaration
public ParseException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | Message to be displayed on throwing an exception. |
ParseException(String, Exception)
Create exception class with a user specified message and inner exception.
Declaration
public ParseException(string message, Exception inner)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | User specified message. |
| System.Exception | inner | Exception on which this instance of exception class is based. |