sso

error_controller.go 145B

12345678910
  1. package controllers
  2. type ErrorController struct {
  3. BaseController
  4. }
  5. func (this *ErrorController) Error404() {
  6. this.SetTpl("error/404.html")
  7. }