Initializes a new instance of the ParentChildException class with specified parent and child tags and an inner exception.

Namespace: HTMLPlusPlus.Exceptions
Assembly: HTMLPlusPlus (in HTMLPlusPlus.dll) Version: 0.1.0.0 (0.1.0.0)

Syntax

C#
public ParentChildException(
	string message,
	IToken parent,
	IToken child,
	Exception innerException
)

Parameters

message
Type: System..::..String
The error message of the exception.
parent
Type: HTMLPlusPlus.Interfaces..::..IToken
The parent tag. Will most likely be this.
child
Type: HTMLPlusPlus.Interfaces..::..IToken
The child tag.
innerException
Type: System..::..Exception
The inner exception.

See Also