mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-28 22:49:49 +00:00
9 lines
No EOL
221 B
Dart
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)';
|
|
} |