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