-
Notifications
You must be signed in to change notification settings - Fork 8
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
c7c345b
commit 364c8a0
Showing
7 changed files
with
71 additions
and
10 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
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
13 changes: 13 additions & 0 deletions
13
.../main/java/org/georchestra/gateway/security/exceptions/DuplicatedEmailFoundException.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 org.georchestra.gateway.security.exceptions; | ||
|
||
public class DuplicatedEmailFoundException extends RuntimeException { | ||
private String message; | ||
|
||
public DuplicatedEmailFoundException(String message) { | ||
super(message); | ||
this.message = message; | ||
} | ||
|
||
public DuplicatedEmailFoundException() { | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...in/java/org/georchestra/gateway/security/exceptions/DuplicatedUsernameFoundException.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 org.georchestra.gateway.security.exceptions; | ||
|
||
public class DuplicatedUsernameFoundException extends RuntimeException { | ||
private String message; | ||
|
||
public DuplicatedUsernameFoundException(String message) { | ||
super(message); | ||
this.message = message; | ||
} | ||
|
||
public DuplicatedUsernameFoundException() { | ||
} | ||
} |