[REST API] Alarmofire error 해결! 우선 서버와 데이터 통신 성공해서 결과 가져오고 이후에 처리하는 과정에서 아래의 에러 발생. 그냥 쉽게 말해서 error을 던지는 것을 저 위쪽에서 받을 수 없음.try를 하게되면 throw과정이 생기는데 catch를 반드시 작성해야 함. ✅ 에러코드Invalid conversion from throwing function of type '(AFDataResponse) throws -> Void' (aka '(DataResponse) throws -> ()') to non-throwing function type '(AFDataResponse) -> Void' (aka '(DataResponse) -> ()') ✅ catch 작성 후 빨간색 사라..