mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-29 15:09:23 +00:00
6 lines
241 B
Dart
6 lines
241 B
Dart
|
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);
|
||
|
}
|