UNPKG

mapillary-js

Version:

WebGL JavaScript library for displaying street level imagery from mapillary.com

17 lines (13 loc) 322 B
/** * @class MapillaryError * * @classdesc Generic Mapillary error. */ export class MapillaryError extends Error { constructor(message?: string) { super(message); Object.setPrototypeOf(this, MapillaryError.prototype); this.name = "MapillaryError"; } } export default MapillaryError;