Files
filestash/public/assets/lib/error.d.ts
2023-11-27 20:58:54 +11:00

14 lines
318 B
TypeScript

export class AjaxError extends Error {
constructor(message: string, err?: any, code?: string);
code(): string;
err(): any;
type(): string;
}
export class ApplicationError extends Error {
constructor(message: string, debug: string);
debugMsg: string;
type(): string;
debug(): string;
}