etcd/store/error.go
2013-07-12 13:35:43 -07:00

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)
}