https://github.com/integrii/go1.13-errors
Testing the new features in go 1.13 for wrapping/unwrapping errors.
https://github.com/integrii/go1.13-errors
Last synced: 3 months ago
JSON representation
Testing the new features in go 1.13 for wrapping/unwrapping errors.
- Host: GitHub
- URL: https://github.com/integrii/go1.13-errors
- Owner: integrii
- Created: 2019-09-04T00:22:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-04T17:20:27.000Z (over 5 years ago)
- Last Synced: 2023-04-08T02:36:39.851Z (about 2 years ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go1.13-errors
Testing the new features in go 1.13 for wrapping/unwrapping errors.Output:
```
Plan println:
a bad codepath was called: This is some error that happened down the stack. A specific one at that.
Error is of type SomeError
Unwrapped:
This is some error that happened down the stack. A specific one at that.
```