diff --git a/pothole-core/src/main/java/pothole_solution/core/global/exception/GlobalExceptionHandler.java b/pothole-core/src/main/java/pothole_solution/core/global/exception/GlobalExceptionHandler.java index ef2f0cf..645cdfb 100644 --- a/pothole-core/src/main/java/pothole_solution/core/global/exception/GlobalExceptionHandler.java +++ b/pothole-core/src/main/java/pothole_solution/core/global/exception/GlobalExceptionHandler.java @@ -31,11 +31,11 @@ public ResponseEntity handleValidException() { } /** - * Progress Converter Exception Handler + * Invalid Parameter Exception Handler */ @ExceptionHandler(MethodArgumentTypeMismatchException.class) public ResponseEntity handleProgressConverterValidException() { - CustomException exception = CustomException.NONE_PROGRESS_STATUS; + CustomException exception = CustomException.INVALID_PARAMETER; return ResponseEntity .status(exception.getStatus().getHttpStatus()) .body(new BaseResponse<>(exception.getStatus()));