UNPKG

@goparrot/geocoder

Version:

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

15 lines 514 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ValidationException = void 0; const geocoder_exception_1 = require("./geocoder.exception"); class ValidationException extends geocoder_exception_1.GeocoderException { constructor(errors) { super('Validation Failed.'); this.errors = errors; } getValidationErrors() { return this.errors; } } exports.ValidationException = ValidationException; //# sourceMappingURL=validation.exception.js.map