UNPKG
@hckrnews/logic-gates
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.2
2.0.0
1.0.2
1.0.1
1.0.0
Generate logic gates without thinking.
github.com/hckrnews/logic-gates
hckrnews/logic-gates
@hckrnews/logic-gates
/
src
/
InvalidInputError.js
10 lines
(8 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
class
InvalidInputError
extends
Error
{
constructor
(
input, ...params
) {
super
(...params);
this
.
name
=
'InvalidInputError'
;
this
.
input
= input;
this
.
typeOf
=
typeof
input; } }