search-destination
Version:
Search destination by name, address, point of interest or coordinates
17 lines (10 loc) • 527 B
JavaScript
var util = require('util');
const DEFAULT_MSSG = 'Module search destination. Error';
function SearchError(message, constructorOptions) {
Error.call(this); // super constructor
Error.captureStackTrace(this, this.constructorOptions || this); // super helper method to include stack trace in error object
this.name = this.constructor.name; // set our function’s name as error name.
this.message = message || DEFAULT_MSSG; // set the error message
}
util.inherits(SearchError, Error);
module.exports = SearchError;