Skip to content

Commit

Permalink
[feat] #3 invalid value exception 클래스 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Oct 26, 2023
1 parent 03ac232 commit df9cbbb
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 org.sopt.seminar.global.error;

public class InvalidValueException extends BusinessException {
public InvalidValueException() {
super(ErrorStatus.BAD_REQUEST);
}

public InvalidValueException(ErrorStatus errorStatus) {
super(errorStatus);
}
}

0 comments on commit df9cbbb

Please sign in to comment.