Issues (33)

src/Exception/NotGeezArgumentException.js (1 issue)

Labels
Severity
1
/**
2
 * Class NotGeezArgumentException.
3
 *
4
 * @author Sam As End <4sam21{at}gmail.com>
5
 */
6
module.exports = class NotGeezArgumentException extends Error {
0 ignored issues
show
The variable Error seems to be never initialized.
Loading history...
7
  constructor($argument) {
8
    super(`Not a geez number!, ${$argument} given.`);
9
  }
10
};
11