Files
tesseract/internal/template/errors.go

10 lines
132 B
Go

package template
type errBadTemplate struct {
message string
}
func (err *errBadTemplate) Error() string {
return err.message
}