동기 분께서 설명해주신 부분 1) async를 쓸 때 controller.js 에서 try, catch 지우고 errorHandler.js 사용 ( 에러 시 일로 감) 1-1) errorHandler.js 에서 next 사용 X 1-2) errorHandler.js 에서 next 사용 2) async를 안 쓸 때 - controller.js 에서 try/catch를 쓴다 --> service.js에서 throw로 에러를 던진다 (그러니까 controller.js에서 catch로 잡는 것) (controller.js에서 try/catch쓰면, 가장 가까운 try catch로 가서 2-1) next 호출 --> error handler로 보냄 2-2) res.status // next(error) 사용x :..