mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
522 B
21 lines
522 B
10 years ago
|
'use strict';
|
||
|
|
||
|
var assign = require('../object/assign')
|
||
|
|
||
|
, captureStackTrace = Error.captureStackTrace;
|
||
|
|
||
|
exports = module.exports = function (message/*, code, ext*/) {
|
||
|
var err = new Error(), code = arguments[1], ext = arguments[2];
|
||
|
if (ext == null) {
|
||
|
if (code && (typeof code === 'object')) {
|
||
|
ext = code;
|
||
|
code = null;
|
||
|
}
|
||
|
}
|
||
|
if (ext != null) assign(err, ext);
|
||
|
err.message = String(message);
|
||
|
if (code != null) err.code = String(code);
|
||
|
if (captureStackTrace) captureStackTrace(err, exports);
|
||
|
return err;
|
||
|
};
|