Skip to content

Instantly share code, notes, and snippets.

@justmoon
justmoon / custom-error.js
Last active March 21, 2023 14:23 — forked from subfuzion/error.md
Creating custom Error classes in Node.js
'use strict';
module.exports = function CustomError(message, extra) {
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.message = message;
this.extra = extra;
};
require('util').inherits(module.exports, Error);