28 lines
679 B
TypeScript
28 lines
679 B
TypeScript
export const DOES_NOT_SUPPORT_FETCH = 0;
|
|
|
|
export class YacdError extends Error {
|
|
constructor(public message: string, public code?: string | number) {
|
|
super(message);
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
}
|
|
|
|
export const errors = {
|
|
[DOES_NOT_SUPPORT_FETCH]: {
|
|
message: 'Browser not supported!',
|
|
detail: 'This browser does not support "fetch", please choose another one.',
|
|
},
|
|
default: {
|
|
message: 'Oops, something went wrong!',
|
|
},
|
|
};
|
|
|
|
export type Err = { code: number };
|
|
|
|
export function deriveMessageFromError(err: Err) {
|
|
const { code } = err;
|
|
if (typeof code === 'number') {
|
|
return errors[code];
|
|
}
|
|
return errors.default;
|
|
}
|