UNPKG
potions
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.1
0.1.0
0.0.1
Minimal Gulp wrapper.
github.com/johnRivs/potions
johnRivs/potions
potions
/
src
/
Helpers
/
PotionsError.js
9 lines
(7 loc)
•
267 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module.exports = function PotionsError(message, extra) { Error.captureStackTrace(
this
,
this
.
constructor
);
this
.name =
this
.
constructor
.name;
this
.message = message;
this
.extra = extra; }; require(
'util'
).inherits(module.exports, Error);