mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-05-04 12:47:55 +08:00
22 lines
445 B
Java
22 lines
445 B
Java
package com.pj.sso;
|
|
|
|
import org.springframework.web.bind.annotation.ExceptionHandler;
|
|
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
|
|
|
import cn.dev33.satoken.util.SaResult;
|
|
|
|
/**
|
|
* 全局异常处理
|
|
*/
|
|
@RestControllerAdvice
|
|
public class ExceptionHandle {
|
|
|
|
// 全局异常拦截
|
|
@ExceptionHandler
|
|
public SaResult handlerException(Exception e) {
|
|
e.printStackTrace();
|
|
return SaResult.error(e.getMessage());
|
|
}
|
|
|
|
}
|