mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +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);
|
||
|
}
|