feat(event): April Foolin

This commit is contained in:
Sabe Jones
2020-04-01 06:31:39 -05:00
parent 92cf506bad
commit e39eafd3f0
157 changed files with 3090 additions and 2328 deletions

View File

@@ -42,6 +42,15 @@ export class NotFound extends CustomError {
}
}
export class Forbidden extends CustomError {
constructor (customMessage) {
super();
this.name = this.constructor.name;
this.httpCode = 403;
this.message = customMessage || 'Access forbidden.';
}
}
export class NotImplementedError extends CustomError {
constructor (str) {
super();