Package erorr implements tools to create and manipulate errors, for the Go programming language.
Go to file
Charles Iliya Krempeaux 52635729b3 github.com/reiver/go-fck -> sourcecode.social/reiver/go-erorr 2023-09-23 04:46:12 +09:00
LICENSE initial commits 2021-11-19 15:41:30 -08:00
README.md github.com/reiver/go-fck -> sourcecode.social/reiver/go-erorr 2023-09-23 04:46:12 +09:00
error.go github.com/reiver/go-fck -> sourcecode.social/reiver/go-erorr 2023-09-23 04:46:12 +09:00
errorf.go github.com/reiver/go-fck -> sourcecode.social/reiver/go-erorr 2023-09-23 04:46:12 +09:00
go.mod github.com/reiver/go-fck -> sourcecode.social/reiver/go-erorr 2023-09-23 04:46:12 +09:00

README.md

go-erorr

Package erorr implements tools to create and manipulate errors.

(This package used to be called "fck".)

Documention

Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-erorr

GoDoc

Creating Errors

There are two ways to create errors —

With erorr.Error:

	const err error = erorr.Error("internal-error")

And with erorr.Errorf:

	var err error = erorr.Errorf("bad value for id %q", id)

One thing to notice is that erorr.Error errors can be a Go const.