mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
25 lines
331 B
Go
25 lines
331 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)
|
|
}
|
|
|
|
type Keyword string
|
|
|
|
func (e Keyword) Error() string {
|
|
return string(e)
|
|
} |