mirror of
https://github.com/elyby/chrly.git
synced 2025-01-11 22:32:09 +05:30
12 lines
187 B
Go
12 lines
187 B
Go
|
package data
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type DataNotFound struct {
|
||
|
Who string
|
||
|
}
|
||
|
|
||
|
func (e DataNotFound) Error() string {
|
||
|
return fmt.Sprintf("Skin data not found. Required username \"%v\"", e.Who)
|
||
|
}
|