├── .github └── workflows │ └── go.yaml ├── .gitignore ├── LICENSE ├── README.md ├── exception.go ├── exception_test.go ├── go.mod └── gopher.png /.github/workflows/go.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/.github/workflows/go.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/README.md -------------------------------------------------------------------------------- /exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/exception.go -------------------------------------------------------------------------------- /exception_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/exception_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rbrahul/exception 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /gopher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbrahul/exception/HEAD/gopher.png --------------------------------------------------------------------------------