blob: 0cbfeddc924f756618c5c16ba2a51f6db353f922 [file] [log] [blame]
'use strict';
module.exports = function BaseOperationError(message, error) {
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.message = message;
this.error = error;
};
require('util').inherits(module.exports, Error);