mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 19:32:27 +08:00
14 lines
318 B
TypeScript
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;
|
|
}
|