github.com/weaveworks/common@v0.0.0-20230728070032-dd9e68f319d5/errors/error.go (about) 1 package errors 2 3 // Error see https://dave.cheney.net/2016/04/07/constant-errors. 4 type Error string 5 6 func (e Error) Error() string { return string(e) }