# 全局捕获异常@ExceptionHandler

主要用在Controller层

	@ExceptionHandler(RuntimeException.class)
	public Object handleAllException(RuntimeException ex) {
		
	}

	@ExceptionHandler(Exception.class)
    public Object handleAllException(Exception ex) {
        
    }
1
2
3
4
5
6
7
8
9