Click or drag to resize

V8Exception Constructor

Version 94.4.20
V8 Exception

Namespace:  CefSharp.RenderProcess
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public V8Exception(
	int endColumn,
	int endPosition,
	int lineNumber,
	string message,
	string scriptResourceName,
	string sourceLine,
	int startColumn,
	int startPosition
)

Parameters

endColumn
Type: SystemInt32
index within the line of the last character where the error occurred.
endPosition
Type: SystemInt32
index within the script of the last character where the error occurred.
lineNumber
Type: SystemInt32
1-based number of the line where the error occurred or 0 if the line number is unknown.
message
Type: SystemString
exception message.
scriptResourceName
Type: SystemString
resource name for the script from where the function causing the error originates.
sourceLine
Type: SystemString
line of source code that the exception occurred within.
startColumn
Type: SystemInt32
index within the line of the first character where the error occurred.
startPosition
Type: SystemInt32
index within the script of the first character where the error occurred.
See Also