chrly/db/capes/files/errors.go

12 lines
188 B
Go
Raw Normal View History

package files
import "fmt"
type CapeNotFound struct {
Who string
}
func (e CapeNotFound) Error() string {
return fmt.Sprintf("Cape file not found. Required username \"%v\"", e.Who)
}