-
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
ansm6
committed
Feb 17, 2023
1 parent
c04fe20
commit c8cec61
Showing
4 changed files
with
27 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
10 changes: 10 additions & 0 deletions
10
src/main/java/com/gaaji/auth/exception/EqualsSellerAndPurchaserException.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,10 @@ | ||
package com.gaaji.auth.exception; | ||
|
||
import static com.gaaji.auth.exception.AuthErrorCode.Equals_Seller_And_Purchaser; | ||
|
||
public class EqualsSellerAndPurchaserException extends AbstractApiException{ | ||
|
||
public EqualsSellerAndPurchaserException() { | ||
super(Equals_Seller_And_Purchaser); | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/main/java/com/gaaji/auth/exception/NonexistentTargetException.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,11 @@ | ||
package com.gaaji.auth.exception; | ||
|
||
import static com.gaaji.auth.exception.AuthErrorCode.Nonexistent_Target; | ||
|
||
public class NonexistentTargetException extends AbstractApiException { | ||
|
||
public NonexistentTargetException() { | ||
super(Nonexistent_Target); | ||
} | ||
|
||
} |