Added README
This commit is contained in:
parent
604df67596
commit
5c9f18d953
2 changed files with 29 additions and 0 deletions
26
README.md
Normal file
26
README.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
```
|
||||
package main
|
||||
|
||||
import (
|
||||
// External
|
||||
werr "git.gibonuddevalla.se/go/wrappederror"
|
||||
|
||||
// Standard
|
||||
"errors"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func errorHandler(err werr.Error) {
|
||||
// For example print or log error to file
|
||||
fmt.Printf("ERROR - %s\n", err)
|
||||
}
|
||||
|
||||
func foo() {
|
||||
werr.SetLogCallback(errorHandler)
|
||||
|
||||
err := errors.New("foobar 1")
|
||||
err1 := werr.Wrap(err)
|
||||
|
||||
err2 := werr.New("foobar 2")
|
||||
}
|
||||
```
|
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module git.gibonuddevalla.se/go/wrappederror
|
||||
|
||||
go 1.21
|
Loading…
Add table
Reference in a new issue