cake_wallet/cw_zano/lib/api/exceptions/wrong_seed_exception.dart
2023-12-16 12:19:11 +00:00

6 lines
No EOL
229 B
Dart

import 'package:cw_zano/api/consts.dart';
import 'package:cw_zano/api/exceptions/api_exception.dart';
class WrongSeedException extends ApiException {
WrongSeedException(String message): super(Consts.errorWrongSeed, message);
}