interface IOTelExceptionWithMessage {
    code?: string | number;
    message: string;
    name?: string;
    stack?: string;
}

Properties

code?: string | number
message: string
name?: string
stack?: string