4cff230256
Also: migration to Typescript 4.5 and µWebsockets 1.20.4
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
/**
|
|
* Errors related to variable handling.
|
|
*/
|
|
export class InvalidTokenError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
Object.setPrototypeOf(this, InvalidTokenError.prototype);
|
|
}
|
|
}
|