workadventure/pusher/src/Controller/InvalidTokenError.ts

10 lines
228 B
TypeScript
Raw Normal View History

/**
* Errors related to variable handling.
*/
export class InvalidTokenError extends Error {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, InvalidTokenError.prototype);
}
}