ExceptionInfo

Container for information about an exception that was logged.

Members

Static functions

from
Nullable!ExceptionInfo from(Exception e)

Constructs a nullable ExceptionInfo from an Exception object.

Variables

exceptionClassName
string exceptionClassName;

The name of the exception class that was thrown.

message
string message;

The exception's message.

sourceFileName
string sourceFileName;

The source file in which the exception occurred.

sourceLineNumber
size_t sourceLineNumber;

The line number at which the exception occurred.

stackTrace
Nullable!string stackTrace;

The stack trace for the exception, if it's available.