define-error
Define errors without frills, but with stack traces and instanceof support.
example
First, create and expose a singleton that defines your errors such as errors.js
:
var defineError = moduleexportsDatabaseError = moduleexportsHttpResponseError =
Then use them:
var assert = DatabaseError = DatabaseError HttpResponseError = HttpResponseError { throw 'No database to query silly'} { throw 'Nobody out there' 404} try catch err console try catch err console
api
var defineError =
var CustomError = defineError('CustomError' [, initFunc])
Create an error constructor, CustomError(message)
. Error
will be in the prototype chain. If an initFunc
function is provided, it will be called in the context of the error being created with all arguments that were passed to the error constructor. This will happen after the message
and stack
properties are set on the error object.
install
With npm do:
npm install --save define-error
testing
npm test
Or to run tests in phantom: npm run phantom
coverage
npm run view-cover
This will output a textual coverage report.
npm run open-cover
This will open an HTML coverage report in the default browser.