Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PgError

import { PgError } from "https://raw.githubusercontent.com/jakajancar/pgc4d/master/src/mod.ts";
interface PgError extends ErrorAndNoticeFields {
severity: "ERROR" | "FATAL" | "PANIC";
}
class PgError extends Error {
constructor(fields: ErrorAndNoticeFields & {
severity: "ERROR" | "FATAL" | "PANIC";
}
);
name: string;
}

§Extends

§Properties

§
severity: "ERROR" | "FATAL" | "PANIC"
[src]

§Extends

§
Error
[src]

§Constructors

§
new PgError(fields: ErrorAndNoticeFields & {
severity: "ERROR" | "FATAL" | "PANIC";
}
)
[src]

§Properties

§
name: string
[src]