Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
Applied code formatting [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
oscm-automaton committed Nov 26, 2021
1 parent 09e1031 commit d9f70a3
Showing 1 changed file with 25 additions and 20 deletions.
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);
}
}

0 comments on commit d9f70a3

Please # to comment.