This repository has been archived by the owner on May 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WEAV-124] 유저 JPA 어댑터 getById 구현 (#38)
- Loading branch information
1 parent
8b81372
commit 85da70e
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
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
7 changes: 7 additions & 0 deletions
7
...m/studentcenter/weave/infrastructure/persistence/common/exception/PersistenceException.kt
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,7 @@ | ||
package com.studentcenter.weave.infrastructure.persistence.common.exception | ||
|
||
import com.studentcenter.weave.support.common.exception.CustomExceptionType | ||
|
||
enum class PersistenceExceptionType(override val code: String): CustomExceptionType { | ||
RESOURCE_NOT_FOUND("PERSISTENCE-001"), | ||
} |
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