1 | /** |
||
2 | * Class NotAnIntegerArgumentException. |
||
3 | * |
||
4 | * @author Sam As End <4sam21{at}gmail.com> |
||
5 | */ |
||
6 | module.exports = class NotAnIntegerArgumentException extends Error { |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
7 | constructor($argument) { |
||
8 | super(`Not an integer!, ${typeof $argument} given.`); |
||
9 | } |
||
10 | }; |
||
11 |