UNPKG
technolist
Version:
latest (1.0.1)
1.0.1
Un módulo NPM para obtener datos de TechnoList
technolist
/
src
/
Utils
/
TechnoError.js
8 lines
(7 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
class
TechnoError
extends
Error
{ constructor(message) {
super
(message);
this
.name =
'TechnoError'
; } }
module
.
exports
= TechnoError;