interface DataProviderExceptionDetails {
    exceptionType?: string;
    message?: string;
    stackTrace?: string;
}

Properties

exceptionType?: string

The type of the exception that was thrown.

message?: string

Message that is associated with the exception.

stackTrace?: string

The StackTrace from the exception turned into a string.