1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 12:00:55 +00:00
This commit is contained in:
youngsterxyf 2016-02-01 22:39:41 +08:00
parent 09193213a0
commit da38cbfe41

View File

@ -424,6 +424,7 @@ func exception(errCode string, ctx *context.Context) {
func executeError(err *errorInfo, ctx *context.Context, code int) {
if err.errorType == errorTypeHandler {
ctx.ResponseWriter.WriteHeader(code)
err.handler(ctx.ResponseWriter, ctx.Request)
return
}