workadventure/back/src/Services/VariableError.ts

10 lines
220 B
TypeScript
Raw Normal View History

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