cake_wallet/cw_zano/lib/api/exceptions/already_exists_exception.dart

6 lines
241 B
Dart
Raw Normal View History

2023-12-16 12:19:11 +00:00
import 'package:cw_zano/api/consts.dart';
import 'package:cw_zano/api/exceptions/api_exception.dart';
class AlreadyExistsException extends ApiException {
AlreadyExistsException(String message): super(Consts.errorAlreadyExists, message);
}