| 12345678910111213141516171819 |
- package store
- type NotFoundError string
- func (e NotFoundError) Error() string {
- return string(e)
- }
- type NotFile string
- func (e NotFile) Error() string {
- return string(e)
- }
- type TestFail string
- func (e TestFail) Error() string {
- return string(e)
- }
|