-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
P4ADEV-394 validate postToken request params
- Loading branch information
antonio.torre
committed
May 29, 2024
1 parent
05270f0
commit f0a98ee
Showing
9 changed files
with
247 additions
and
60 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
11 changes: 11 additions & 0 deletions
11
src/main/java/it/gov/pagopa/payhub/auth/exception/custom/InvalidExchangeClientException.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 it.gov.pagopa.payhub.auth.exception.custom; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class InvalidExchangeClientException extends RuntimeException { | ||
|
||
public InvalidExchangeClientException(String message) { | ||
super(message); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...main/java/it/gov/pagopa/payhub/auth/exception/custom/InvalidExchangeRequestException.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 it.gov.pagopa.payhub.auth.exception.custom; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class InvalidExchangeRequestException extends RuntimeException { | ||
|
||
public InvalidExchangeRequestException(String message) { | ||
super(message); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/it/gov/pagopa/payhub/auth/exception/custom/InvalidGrantTypeException.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 it.gov.pagopa.payhub.auth.exception.custom; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class InvalidGrantTypeException extends RuntimeException { | ||
|
||
public InvalidGrantTypeException(String message) { | ||
super(message); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/it/gov/pagopa/payhub/auth/exception/custom/InvalidTokenIssuerException.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 it.gov.pagopa.payhub.auth.exception.custom; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class InvalidTokenIssuerException extends RuntimeException { | ||
|
||
public InvalidTokenIssuerException(String message) { | ||
super(message); | ||
} | ||
} |
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
Oops, something went wrong.