Giter Club home page Giter Club logo

nerror's Introduction

NError

Nested Error ES6 class

Installation

npm install --save nerror

Usage

An abstract example

const NError = require('nerror');

try {
    try {
        try {
            let error = new Error('Some DB error');
            error.code = 42000;
            throw error;
        } catch (error) {
            throw new NError(error, { sqlState: error.code }, 'Could not insert row');
        }
    } catch (error) {
        throw new NError(error, { customerId: 9000 }, 'Could not create user');
    }
} catch (error) {
    console.log(error.messages, JSON.stringify(error.info, undefined, 4));
    /* Could not create user: Could not insert row: Some DB error {
           "sqlState": 42000,
           "customerId": 9000
       } */

    console.log(error.fullStack);
    /* NError: Could not create user
           at Object.<anonymous> (/home/ross/tmp/nerror/test.js:13:15)
           at Module._compile (module.js:570:32)
           at Object.Module._extensions..js (module.js:579:10)
           at Module.load (module.js:487:32)
           at tryModuleLoad (module.js:446:12)
           at Function.Module._load (module.js:438:3)
           at Module.runMain (module.js:604:10)
           at run (bootstrap_node.js:393:7)
           at startup (bootstrap_node.js:150:9)
           at bootstrap_node.js:508:3
       NError: Could not insert row
           at Object.<anonymous> (/home/ross/tmp/nerror/test.js:10:19)
           at Module._compile (module.js:570:32)
           at Object.Module._extensions..js (module.js:579:10)
           at Module.load (module.js:487:32)
           at tryModuleLoad (module.js:446:12)
           at Function.Module._load (module.js:438:3)
           at Module.runMain (module.js:604:10)
           at run (bootstrap_node.js:393:7)
           at startup (bootstrap_node.js:150:9)
           at bootstrap_node.js:508:3
       Error: Some DB error
           at Object.<anonymous> (/home/ross/tmp/nerror/test.js:6:25)
           at Module._compile (module.js:570:32)
           at Object.Module._extensions..js (module.js:579:10)
           at Module.load (module.js:487:32)
           at tryModuleLoad (module.js:446:12)
           at Function.Module._load (module.js:438:3)
           at Module.runMain (module.js:604:10)
           at run (bootstrap_node.js:393:7)
           at startup (bootstrap_node.js:150:9)
           at bootstrap_node.js:508:3 */
}

NError

new NError([parent,] [info,] ...args)

parent is optional parent error instance

info is optional information attached to the error. it will be merged with parents' info objects

...args - rest is usual Error constructor arguments

Examples

The following are all valid constructor calls:

  • new NError('Error occurred') // just like usual Error

  • new NError(new Error('Test'), 'Error occurred') // pass the parent

  • new NError({ someKey: "some value" }, 'Error occurred') // pass info

  • new NError(new NError('Some error'), { key: 'value' }, 'Error occurred') // do both

.parent

Parent error accessor

.info

Combined information created by merging infos of all the parent chain

.messages

Combined messages of all the parents

.fullStack

Combined stack info of all the parents

.toArray()

Convert this error chain to an array. Consider the following example:

let err1 = new Error('1');
let err2 = new NError(err1, '2');
let err3 = new NError(err2, '3');

err3.toArray() will return: [ err3, err2, err1 ]

nerror's People

Contributors

basarevych avatar

Watchers

James Cloos avatar  avatar

Forkers

yangxin1994

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.