A simple, custom Error class meant to be used in gimmeJS projects
npm install gimmejs-error

A simple, custom Error class meant to be used in gimmeJS projects.
npm install --save gimmejs-error
`$3
Within each file that needs access to the GimmeError class:
`
const GimmeError = require('gimmejs-error');
`$3
Now you can create new instances of GimmeError:
`
var newError = new GimmeError();
``