├── .eslintrc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CHANGES.md ├── LICENSE ├── Makefile ├── README.md ├── lib ├── baseClasses │ ├── HttpError.js │ └── RestError.js ├── helpers.js ├── httpErrors.js ├── index.js ├── makeConstructor.js ├── restErrors.js └── serializer.js ├── package.json ├── test ├── .eslintrc └── index.js └── tools └── githooks └── pre-push /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/README.md -------------------------------------------------------------------------------- /lib/baseClasses/HttpError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/baseClasses/HttpError.js -------------------------------------------------------------------------------- /lib/baseClasses/RestError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/baseClasses/RestError.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/httpErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/httpErrors.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/makeConstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/makeConstructor.js -------------------------------------------------------------------------------- /lib/restErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/restErrors.js -------------------------------------------------------------------------------- /lib/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/lib/serializer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/test/index.js -------------------------------------------------------------------------------- /tools/githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restify/errors/HEAD/tools/githooks/pre-push --------------------------------------------------------------------------------