### 404 设置
dotweb支持应用自定义404逻辑处理
* 默认: 当发生404异常时,会默认使用http.NotFound处理
* 自定义: 通过DotWeb.SetNotFoundHandle(handler NotFoundHandle)实现自定义处理逻辑
~~~
//自定义404输出
app.SetNotFoundHandle(func(w http.ResponseWriter, req *http.Request) {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("is't app's not found!"))
})
~~~
后续计划增加404跳转设置 - 待实现