This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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
09e1031
commit d9f70a3
Showing
1 changed file
with
25 additions
and
20 deletions.
There are no files selected for viewing
45 changes: 25 additions & 20 deletions
45
src/main/java/org/oscm/identity/error/IdTokenValidationException.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 |
---|---|---|
@@ -1,29 +1,34 @@ | ||
package org.oscm.identity.error; | ||
|
||
/** | ||
* Exception that is thrown, when validation of the ID Token fails | ||
* ***************************************************************************** | ||
* | ||
* <p>Copyright FUJITSU LIMITED 2021 | ||
* | ||
* <p>Creation Date: 26-11-2021 | ||
* | ||
* <p>***************************************************************************** | ||
*/ | ||
package org.oscm.identity.error; | ||
|
||
/** Exception that is thrown, when validation of the ID Token fails */ | ||
public class IdTokenValidationException extends TokenValidationException { | ||
|
||
|
||
public IdTokenValidationException(String message) { | ||
super(message); | ||
} | ||
public IdTokenValidationException(String message) { | ||
super(message); | ||
} | ||
|
||
public IdTokenValidationException(String message, String errorCode) { | ||
super(message, errorCode); | ||
} | ||
public IdTokenValidationException(String message, String errorCode) { | ||
super(message, errorCode); | ||
} | ||
|
||
public IdTokenValidationException(Throwable exception) { | ||
super(exception); | ||
} | ||
public IdTokenValidationException(Throwable exception) { | ||
super(exception); | ||
} | ||
|
||
public IdTokenValidationException(String message, Throwable exception) { | ||
super(message, exception); | ||
} | ||
public IdTokenValidationException(String message, Throwable exception) { | ||
super(message, exception); | ||
} | ||
|
||
public IdTokenValidationException(String message, String errorCode, | ||
Throwable exception) { | ||
super(message, errorCode, exception); | ||
} | ||
public IdTokenValidationException(String message, String errorCode, Throwable exception) { | ||
super(message, errorCode, exception); | ||
} | ||
} |