cake_wallet/cw_zano/lib/api/exceptions/api_exception.dart
2023-12-16 12:19:11 +00:00

9 lines
No EOL
221 B
Dart

class ApiException implements Exception {
final String code;
final String message;
ApiException(this.code, this.message);
@override
String toString() => '${this.runtimeType}(code: $code, message: $message)';
}