-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AYS-427 |
AdminRegistrationApplicationNotExistException
Has Been In…
…tegrated to Summary and Complete Admin Registration Flows (#372)
- Loading branch information
1 parent
7b2d2c8
commit 3eb7bfc
Showing
10 changed files
with
220 additions
and
144 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
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
30 changes: 30 additions & 0 deletions
30
src/main/java/org/ays/auth/util/exception/AdminRegistrationApplicationNotExistException.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,30 @@ | ||
package org.ays.auth.util.exception; | ||
|
||
import org.ays.common.util.exception.AysAuthException; | ||
|
||
import java.io.Serial; | ||
|
||
/** | ||
* Exception indicating that an admin registration application does not exist with the specified ID. | ||
* It extends {@link AysAuthException}, which provides the base exception for all authentication-related issues in the application. | ||
* Typically, this exception is thrown when an operation or query is performed on an admin register application | ||
* entity using an ID that does not correspond to an existing admin register application. | ||
*/ | ||
public final class AdminRegistrationApplicationNotExistException extends AysAuthException { | ||
|
||
/** | ||
* Unique identifier for serialization. | ||
*/ | ||
@Serial | ||
private static final long serialVersionUID = 8875043711494901525L; | ||
|
||
/** | ||
* Constructs a new {@link AdminRegistrationApplicationNotExistException} with the specified ID. | ||
* | ||
* @param id The ID of the admin registration application that does not exist. | ||
*/ | ||
public AdminRegistrationApplicationNotExistException(String id) { | ||
super("admin registration application does not exist! id:" + id); | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.