Skip to content
Snippets Groups Projects
Commit 26ba3a6b authored by Eunhak Lee's avatar Eunhak Lee
Browse files

chore: nested exception 을 통한 오류 가시성 개선

parent 3c99c98d
No related branches found
No related tags found
1 merge request!17hotfix: transactions 테이블 구조 일치
......@@ -92,10 +92,11 @@ const myService = {
return {
combinationId: combinationId || null,
};
} catch {
} catch (e) {
throw new ReportableError(
500,
'등록 코드 상태를 확인하는 중 문제가 발생했습니다.'
'등록 코드 상태를 확인하는 중 문제가 발생했습니다.',
e
);
}
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment