Sign in
go
/
tools.git
/
a19eef6bcb20e66f8d655ff8c1956804293a7bdf
/
.
/
go
/
ssa
/
interp
/
testdata
/
src
/
errors
/
errors.go
blob: 2377563ca2862be482458707183657a9ae48496e [
file
] [
log
] [
blame
]
package errors
func New(text string) error { return errorString{text} }
type errorString struct{ s string }
func (e errorString) Error() string { return e.s }