Git Product home page Git Product logo

node-custom-error's People

Contributors

jproulx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

node-custom-error's Issues

Strange syntax in README sample?

In the README.md, there is an example that says:

var ValidationError = createCustomError('ValidationError', { 'required', 'Missing parameter x' }, TypeError);

What is the second parameter?

To me, { 'required', 'Missing parameter x' } doesn't look like valid JavaScript syntax, but further below you write something about object descriptors. When I google for that, I only find information on enumerables, โ€ฆ

Can you explain whether this is a syntax error, or what kind of language construct this is?

This would be very helpful :-)

How to wrap an error object and set custom properties

I want to create an error with custom constructor so I can set custom properties like this:

var HTTPError = createCustomError('HTTPError', null, function(code) {
  this.code = code;
});

var error = new HTTPError("You don't have permission', 403);

console.log(error.code);

I also want to wrap this error like this:

var error = new ValidationError("Missing field");
var serverError = new HTTPError("Something went wrong", error);

I can't do both at the same time, either I have to use a custom constructor, or another error object.
How can I create a custom error that wraps an error object, and I can set custom properties on it?

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.