for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* Class NotGeezArgumentException.
*
* @author Sam As End <4sam21{at}gmail.com>
*/
module.exports = class NotGeezArgumentException extends Error {
Error
constructor($argument) {
super(`Not a geez number!, ${$argument} given.`);
}
};