cake_wallet/cw_zano/lib/api/exceptions/api_exception.dart

9 lines
221 B
Dart
Raw Normal View History

2023-12-16 12:19:11 +00:00
class ApiException implements Exception {
final String code;
final String message;
ApiException(this.code, this.message);
@override
String toString() => '${this.runtimeType}(code: $code, message: $message)';
}