format project

This commit is contained in:
counterweight 2025-02-14 11:13:18 +01:00
parent 90d8e39eb3
commit c02cf8c12e
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
39 changed files with 2062 additions and 909 deletions

View file

@ -1,34 +1,34 @@
class AlreadyUsedError extends Error {
constructor(message) {
super(message);
this.name = "AlreadyUsedError"
}
constructor(message) {
super(message);
this.name = 'AlreadyUsedError';
}
}
class InvalidSignatureError extends Error {
constructor(message) {
super(message);
this.name = "InvalidSignatureError";
}
constructor(message) {
super(message);
this.name = 'InvalidSignatureError';
}
}
class NotFoundError extends Error {
constructor(message) {
super(message);
this.name = "AppInvitedUsedError";
}
constructor(message) {
super(message);
this.name = 'AppInvitedUsedError';
}
}
class ExpiredError extends Error {
constructor(message) {
super(message);
this.name = 'ExpiredError';
}
constructor(message) {
super(message);
this.name = 'ExpiredError';
}
}
module.exports = {
AlreadyUsedError,
InvalidSignatureError,
NotFoundError,
ExpiredError
};
AlreadyUsedError,
InvalidSignatureError,
NotFoundError,
ExpiredError,
};