Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomwright/cerr
Coded error handling in Go.
https://github.com/tomwright/cerr
error error-code errorcode errors go go-errors golang
Last synced: 19 days ago
JSON representation
Coded error handling in Go.
- Host: GitHub
- URL: https://github.com/tomwright/cerr
- Owner: TomWright
- Created: 2019-11-12T18:27:25.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-13T12:10:38.000Z (almost 5 years ago)
- Last Synced: 2024-10-11T01:03:52.342Z (about 1 month ago)
- Topics: error, error-code, errorcode, errors, go, go-errors, golang
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/TomWright/cerr.svg?branch=master)](https://travis-ci.org/TomWright/cerr)
[![codecov](https://codecov.io/gh/TomWright/cerr/branch/master/graph/badge.svg)](https://codecov.io/gh/TomWright/cerr)
[![Documentation](https://godoc.org/github.com/TomWright/cerr?status.svg)](https://godoc.org/github.com/TomWright/cerr)# cerr
Coded error handling in Go.
Use error codes to identity what has gone wrong, and do not expose internal error messages to external clients.
## Usage
Requires Go `1.13` and up.
```
go get https://github.com/tomwright/cerr
```Check [tests and examples on godoc](https://godoc.org/github.com/TomWright/cerr).