search-destination-cache
Version:
Search destinations by name, address, point of interest or coordinates. Using Redis DB for caching.
16 lines (10 loc) • 535 B
JavaScript
var util = require('util');
const DEFAULT_MSSG = 'Search process error';
function SearchProcessError(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(SearchProcessError, Error);
module.exports = SearchProcessError;