mapillary-js
Version:
A WebGL interactive street imagery library
12 lines (8 loc) • 349 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";
}
}