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