default exception handler
This commit is contained in:
		
							parent
							
								
									4823a0f114
								
							
						
					
					
						commit
						ead635e62f
					
				
							
								
								
									
										11
									
								
								error.go
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								error.go
									
									
									
									
									
								
							| @ -390,18 +390,19 @@ func ErrorController(c ControllerInterface) *App { | |||||||
| // show error string as simple text message. | // show error string as simple text message. | ||||||
| // if error string is empty, show 503 or 500 error as default. | // if error string is empty, show 503 or 500 error as default. | ||||||
| func exception(errCode string, ctx *context.Context) { | func exception(errCode string, ctx *context.Context) { | ||||||
| 	code, _ := strconv.Atoi(errCode) |  | ||||||
| 	if code == 0 { |  | ||||||
| 		code = 503 |  | ||||||
| 	} |  | ||||||
| 	for _, ec := range []string{errCode, "503", "500"} { | 	for _, ec := range []string{errCode, "503", "500"} { | ||||||
|  | 		code, _ := strconv.Atoi(ec) | ||||||
|  | 		if code == 0 { | ||||||
|  | 			code = 503 | ||||||
|  | 		} | ||||||
| 		if h, ok := ErrorMaps[ec]; ok { | 		if h, ok := ErrorMaps[ec]; ok { | ||||||
| 			executeError(h, ctx, code) | 			executeError(h, ctx, code) | ||||||
| 			return | 			return | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 	//if 50x error has been removed from errorMap | 	//if 50x error has been removed from errorMap | ||||||
| 	ctx.ResponseWriter.WriteHeader(code) | 	//set 503 as default | ||||||
|  | 	ctx.ResponseWriter.WriteHeader(503) | ||||||
| 	ctx.WriteString(errCode) | 	ctx.WriteString(errCode) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user