mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-28 06:29:39 +00:00
6 lines
182 B
Dart
6 lines
182 B
Dart
|
import 'package:cw_zano/api/exceptions/api_exception.dart';
|
||
|
|
||
|
class TransferException extends ApiException {
|
||
|
TransferException(String code, String message): super(code, message);
|
||
|
}
|