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