-
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.
- Loading branch information
1 parent
9bf3b00
commit ac2bffd
Showing
4 changed files
with
21 additions
and
2 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
4 changes: 3 additions & 1 deletion
4
Api/src/main/java/com/example/api/config/security/SecurityUtil.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
4 changes: 4 additions & 0 deletions
4
Api/src/main/java/com/example/api/user/service/GetUserGenresUseCase.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,4 @@ | ||
package com.example.api.user.service; | ||
|
||
public class GetUserGenresUseCase { | ||
} |
13 changes: 13 additions & 0 deletions
13
Core/src/main/java/com/example/error/exception/SecurityContextNotFoundException.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 com.example.error.exception; | ||
|
||
import com.example.error.BaseErrorException; | ||
import com.example.error.GlobalErrorCode; | ||
|
||
public class SecurityContextNotFoundException extends BaseErrorException { | ||
|
||
public static final BaseErrorException EXCEPTION = new SecurityContextNotFoundException(); | ||
|
||
private SecurityContextNotFoundException() { | ||
super(GlobalErrorCode.SECURITY_CONTEXT_NOT_FOUND); | ||
} | ||
} |