From b68368ac761255ca5369e126f8b6b2329a3a186b Mon Sep 17 00:00:00 2001 From: kimhyun5u <22kimhyun5u@gmail.com> Date: Tue, 13 Aug 2024 16:33:38 +0900 Subject: [PATCH] =?UTF-8?q?[chore]=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C?= =?UTF-8?q?=20throws=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../camp/woowak/lab/customer/service/SignUpCustomerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/camp/woowak/lab/customer/service/SignUpCustomerService.java b/src/main/java/camp/woowak/lab/customer/service/SignUpCustomerService.java index c8b1cbdb..3aa0c421 100644 --- a/src/main/java/camp/woowak/lab/customer/service/SignUpCustomerService.java +++ b/src/main/java/camp/woowak/lab/customer/service/SignUpCustomerService.java @@ -32,7 +32,7 @@ public SignUpCustomerService(CustomerRepository customerRepository, PayAccountRe * @throws DuplicateEmailException 이메일이 중복되는 경우 */ @Transactional - public Long signUp(SignUpCustomerCommand cmd) throws InvalidCreationException, DuplicateEmailException { + public Long signUp(SignUpCustomerCommand cmd) { PayAccount payAccount = new PayAccount(); payAccountRepository.save(payAccount);