UNPKG

node-geocoder

Version:

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

14 lines (9 loc) 268 B
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;