cacheman
Version:
Small and efficient cache provider for Node.JS with In-memory, Redis and MongoDB engines
39 lines (29 loc) • 2.07 kB
JavaScript
;
/**
* Cacheman base error class.
*
* @constructor
* @param {String} message
* @param {EventEmitter} logger
* @api public
*/
Object.defineProperty(exports, '__esModule', {
value: true
});
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var CachemanError = (function (_Error) {
_inherits(CachemanError, _Error);
function CachemanError(message, logger) {
_classCallCheck(this, CachemanError);
_get(Object.getPrototypeOf(CachemanError.prototype), 'constructor', this).call(this, message);
this.name = this.constructor.name;
this.message = message;
Error.captureStackTrace(this, this.constructor.name);
if (logger) logger.emit('error', this);
}
return CachemanError;
})(Error);
exports['default'] = CachemanError;
module.exports = exports['default'];