Skip to content

Commit

Permalink
[chore] 불필요한 throws 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhyun5u committed Aug 13, 2024
1 parent 7a1e3fb commit b68368a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit b68368a

Please sign in to comment.