mirror of
https://github.com/elyby/chrly.git
synced 2024-12-25 14:39:55 +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)
|
||
|
}
|