| 1 | package errors |
|---|---|
| 2 | |
| 3 | func New(text string) error { return errorString{text} } |
| 4 | |
| 5 | type errorString struct{ s string } |
| 6 | |
| 7 | func (e errorString) Error() string { return e.s } |
| 8 |
| 1 | package errors |
|---|---|
| 2 | |
| 3 | func New(text string) error { return errorString{text} } |
| 4 | |
| 5 | type errorString struct{ s string } |
| 6 | |
| 7 | func (e errorString) Error() string { return e.s } |
| 8 |