mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-05 10:29:23 +00:00
7 lines
276 B
Dart
7 lines
276 B
Dart
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
import 'package:cw_ethereum/ethereum_exceptions.dart';
|
||
|
|
||
|
class PolygonTransactionCreationException extends EthereumTransactionCreationException {
|
||
|
PolygonTransactionCreationException(CryptoCurrency currency) : super(currency);
|
||
|
}
|