caolan / caolan/nodeunit

Allow importing custom error types

未关闭
#246 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
JavaScript
星标
1.9k
派生
359
PR 合并指标
30 天内没有已合并 PR

描述

Hi,

I am using node unit and I defined custom error types in this fashion :

```
var errors = {}
errors.UnknownAttributeError = function(message) {
this.name = "UnknownAttributeError";
this.message = message || "UnknownAttributeError";
}
errors.UnknownAttributeError.prototype = new Error();
errors.UnknownAttributeError.prototype.constructor = errors.UnknownAttributeError;

module.exports = errors;
```

when I import the errors file as so :

```
var Errors = require('./../../lib/relational/errors');
```

The `new Error()` is caught and raised, but I think it should not be...

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。