├── .bettercodehub.yml ├── .codeclimate.yml ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── src ├── custom-error.spec.ts ├── custom-error.ts ├── example │ ├── clean-stack.ts │ └── http-error.ts ├── factory.spec.ts ├── factory.ts ├── index.ts ├── spec.utils.ts └── utils.ts ├── tsconfig.json └── tslint.json /.bettercodehub.yml: -------------------------------------------------------------------------------- 1 | component_depth: 2 2 | languages: 3 | - typescript 4 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/package.json -------------------------------------------------------------------------------- /src/custom-error.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/custom-error.spec.ts -------------------------------------------------------------------------------- /src/custom-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/custom-error.ts -------------------------------------------------------------------------------- /src/example/clean-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/example/clean-stack.ts -------------------------------------------------------------------------------- /src/example/http-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/example/http-error.ts -------------------------------------------------------------------------------- /src/factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/factory.spec.ts -------------------------------------------------------------------------------- /src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/factory.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/spec.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/spec.utils.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriengibrat/ts-custom-error/HEAD/tslint.json --------------------------------------------------------------------------------