chrly/db/skins/redis/errors.go

13 lines
189 B
Go
Raw Normal View History

package redis
import "fmt"
type SkinNotFound struct {
Who string
}
func (e SkinNotFound) Error() string {
return fmt.Sprintf("Skin data not found. Required username \"%v\"", e.Who)
}