UNPKG

maplibre-gl

Version:

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

12 lines (10 loc) 239 B
class ParsingError extends Error { key: string; message: string; constructor(key: string, message: string) { super(message); this.message = message; this.key = key; } } export default ParsingError;