minor: see previous commits

This commit is contained in:
Gerasimos (Makis) Maropoulos 2021-02-15 11:36:22 +02:00
parent e901575ca8
commit 5ccd80a6cd
No known key found for this signature in database
GPG Key ID: A771A828097B36C7

View File

@ -44,7 +44,7 @@ func CanMakeHandler(tmpl macro.Template) (needsMacroHandler bool) {
if p.HandleError != nil {
// Check for its type.
if _, ok := p.HandleError.(ParamErrorHandler); !ok {
panic(fmt.Sprintf("HandleError must be a type of func(iris.Context, error) but got: %T", p.HandleError))
panic(fmt.Sprintf("HandleError must be a type of func(iris.Context, int, error) but got: %T", p.HandleError))
}
}
break