0.0.2 • Published 11 years ago

custom-err v0.0.2

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

custom-err

Easily create an error object with custom properties attached.

API

Err(message, properties)

Usage

var Err    = require('custom-err'),
    assert = require('assert');

// the first argument represents the error message
// the second argument represents the custom properties object
var myErr = Err('NotFound', { code: 404 });

assert.equal(myErr.message, 'NotFound');
assert.equal(myErr.code, 404);

License

MIT