UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

16 lines (12 loc) 266 B
class RuntimeError { name: string; message: string; constructor(message: string) { this.name = 'ExpressionEvaluationError'; this.message = message; } toJSON() { return this.message; } } export default RuntimeError;