Files
ngx-open-map-wrapper/node_modules/@maplibre/maplibre-gl-style-spec/src/expression/runtime_error.ts
T

11 lines
196 B
TypeScript

export class RuntimeError extends Error {
constructor(message: string) {
super(message);
this.name = 'RuntimeError';
}
toJSON() {
return this.message;
}
}