it('should inherit from the Error prototype', function (done) {
            error.should.be.an.instanceOf(Error);
            Error.prototype.isPrototypeOf(error).should.equal(true);
            return done();
        });