Issues (33)

src/Exception/NotAnIntegerArgumentException.js (1 issue)

Labels
Severity
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
The variable Error seems to be never initialized.
Loading history...
7
  constructor($argument) {
8
    super(`Not an integer!, ${typeof $argument} given.`);
9
  }
10
};
11