Commit 9c665afc authored by astaxie's avatar astaxie

improve the error tips

parent e65d8797
...@@ -153,7 +153,7 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM ...@@ -153,7 +153,7 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM
if val := reflectVal.MethodByName(colon[1]); val.IsValid() { if val := reflectVal.MethodByName(colon[1]); val.IsValid() {
methods[strings.ToUpper(m)] = colon[1] methods[strings.ToUpper(m)] = colon[1]
} else { } else {
panic(colon[1] + " method doesn't exist in the controller " + t.Name()) panic("'" + colon[1] + "' method doesn't exist in the controller " + t.Name())
} }
} else { } else {
panic(v + " is an invalid method mapping. Method doesn't exist " + m) panic(v + " is an invalid method mapping. Method doesn't exist " + m)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment