mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-04 18:09:39 +00:00
9 lines
221 B
Dart
9 lines
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)';
|
||
|
}
|