package com.hwtd.mes.collect.handler; import com.hwtd.mes.collect.util.Result; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.RestControllerAdvice; @RestControllerAdvice public class GlobalExceptionHandler { @ExceptionHandler({Exception.class}) public Result exception(Exception e) { return Result.failed(e.getMessage()); } }