+signup +login
Some checks failed
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
Some checks failed
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
This commit is contained in:
@@ -1,2 +1,22 @@
|
||||
class AuthorizationFailed implements Exception {
|
||||
class AuthenticationFailedException implements Exception {
|
||||
final String message;
|
||||
final Exception? originalError;
|
||||
|
||||
const AuthenticationFailedException(this.message, [this.originalError]);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'AuthenticationFailedException: $message${originalError != null ? ' (caused by: $originalError)' : ''}';
|
||||
}
|
||||
}
|
||||
|
||||
class CircuitBreakerOpenException implements Exception {
|
||||
final String message;
|
||||
|
||||
const CircuitBreakerOpenException(this.message);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'CircuitBreakerOpenException: $message';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user