UNPKG

@goparrot/geocoder

Version:

TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom

11 lines 330 B
import { GeocoderException } from './geocoder.exception'; export class ValidationException extends GeocoderException { constructor(errors) { super('Validation Failed.'); this.errors = errors; } getValidationErrors() { return this.errors; } } //# sourceMappingURL=validation.exception.js.map