swc/bundler/tests/.cache/deno/43454605486473f70df2c2cf3d2637b833e7e72d.ts

33 lines
592 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/mysql/src/constant/errors.ts
export class ConnnectionError extends Error {
constructor(msg?: string) {
super(msg);
}
}
export class WriteError extends ConnnectionError {
constructor(msg?: string) {
super(msg);
}
}
export class ReadError extends ConnnectionError {
constructor(msg?: string) {
super(msg);
}
}
export class ResponseTimeoutError extends ConnnectionError {
constructor(msg?: string) {
super(msg);
}
}
export class ProtocolError extends ConnnectionError {
constructor(msg?: string) {
super(msg);
}
}