Skip to content

Commit

Permalink
#82 feat : apply 예외 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
rivkode committed Apr 29, 2024
1 parent 9b7fdf2 commit 2518889
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.seoultech.synergybe.domain.apply.exception;

import com.seoultech.synergybe.system.exception.BadRequestException;

import static com.seoultech.synergybe.system.exception.ErrorCode.BAD_REQUEST;

public class ApplyBadRequestException extends BadRequestException {
public ApplyBadRequestException(String message) {
super(BAD_REQUEST, message);
}
}

0 comments on commit 2518889

Please sign in to comment.