mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
14 lines (9 loc) • 326 B
text/typescript
import {MapillaryError} from "./MapillaryError";
export class GraphMapillaryError extends MapillaryError {
constructor (message: string) {
super(message);
Object.setPrototypeOf(this, GraphMapillaryError.prototype);
this.name = "GraphMapillaryError";
}
}
export default GraphMapillaryError;