chrly/db/skins/redis/errors.go

10 lines
139 B
Go

package redis
type SkinNotFoundError struct {
Who string
}
func (e SkinNotFoundError) Error() string {
return "Skin data not found."
}