Skip to content

Commit 2192ebb

Browse files
committed
[refact] 리크루팅 기간 이전 작업에 대한 예외로 이름 변경 #192
1 parent 5885313 commit 2192ebb

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/main/java/ceos/backend/domain/subscriber/exception/InvalidAction.java

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package ceos.backend.domain.subscriber.exception;
2+
3+
4+
import ceos.backend.global.error.BaseErrorException;
5+
6+
public class InvalidActionBefore extends BaseErrorException {
7+
8+
public static final InvalidActionBefore EXCEPTION = new InvalidActionBefore();
9+
10+
private InvalidActionBefore() {
11+
super(SubscriberErrorCode.INVALID_ACTION_BEFORE);
12+
}
13+
}

0 commit comments

Comments
 (0)