mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
19 lines
255 B
Go
19 lines
255 B
Go
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)
|
|
} |