UNPKG

node-geocoder

Version:

Node Geocoder, node geocoding library, supports google maps, mapquest, open street map, tom tom, promise

11 lines (10 loc) 279 B
"use strict"; var util = require('util'); var ValueError = function (message) { Error.call(this); Error.captureStackTrace(this, this.constructor); this.name = 'ValueError'; this.message = message; }; util.inherits(ValueError, Error); module.exports = ValueError;