package rpdata2 import "fmt" type NotFound string func (e NotFound) Error() string { return fmt.Sprintf("%s not found", string(e)) }