Rust語言馬老師
異常處理
@RestControllerAdvicepublic class GlobalExceptionHandler {
? ?@ExceptionHandler(Exception.class)
? ?public String handleException(Exception e) {
? ? ? ?if (e instanceof ArithmeticException) {
? ? ? ? ? ?return "";
? ? ? ?}
? ? ? ?if (e instanceof Exception) {
? ? ? ? ? ?return "";
? ? ? ?}
? ? ? ?retur nnull;
? ?}}
標簽: