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
22 lines
576 B
Dart
22 lines
576 B
Dart
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';
|
|
}
|
|
} |