-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from CEOS-Developers/refact/mail
메일링 서비스 리크루팅 기간 내 발송 가능하도록 수정
- Loading branch information
Showing
6 changed files
with
39 additions
and
21 deletions.
There are no files selected for viewing
13 changes: 0 additions & 13 deletions
13
src/main/java/ceos/backend/domain/subscriber/exception/InvalidAction.java
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
src/main/java/ceos/backend/domain/subscriber/exception/InvalidActionAfter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package ceos.backend.domain.subscriber.exception; | ||
|
||
|
||
import ceos.backend.global.error.BaseErrorException; | ||
|
||
public class InvalidActionAfter extends BaseErrorException { | ||
|
||
public static final InvalidActionAfter EXCEPTION = new InvalidActionAfter(); | ||
|
||
private InvalidActionAfter() { | ||
super(SubscriberErrorCode.INVALID_ACTION_AFTER); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/ceos/backend/domain/subscriber/exception/InvalidActionBefore.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package ceos.backend.domain.subscriber.exception; | ||
|
||
|
||
import ceos.backend.global.error.BaseErrorException; | ||
|
||
public class InvalidActionBefore extends BaseErrorException { | ||
|
||
public static final InvalidActionBefore EXCEPTION = new InvalidActionBefore(); | ||
|
||
private InvalidActionBefore() { | ||
super(SubscriberErrorCode.INVALID_ACTION_BEFORE); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters