Interface ClientNotice

interface ClientNotice {
    code: string;
    detail?: string;
    file?: string;
    hint?: string;
    level: ErrorLevel;
    line?: number;
    message: string;
    name: string;
    position?: number;
    routine?: string;
    stack?: string;
}

Hierarchy (view full)

Properties

code: string
detail?: string
file?: string
hint?: string
level: ErrorLevel
line?: number
message: string
name: string
position?: number
routine?: string
stack?: string