From 0b3a72bcbf9dbbd4f564e6f7a31ec87b5b48cda6 Mon Sep 17 00:00:00 2001 From: dab246 Date: Fri, 4 Aug 2023 16:08:30 +0700 Subject: [PATCH] TF-2064 Move exceptions to outside model folder (cherry picked from commit c568af1620e5f408642958f017ffb79c0f54260f) --- lib/features/quotas/data/network/quotas_api.dart | 2 +- .../quotas/domain/{model => }/exceptions/quotas_exception.dart | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/features/quotas/domain/{model => }/exceptions/quotas_exception.dart (100%) diff --git a/lib/features/quotas/data/network/quotas_api.dart b/lib/features/quotas/data/network/quotas_api.dart index c5d30da39..f44e3589c 100644 --- a/lib/features/quotas/data/network/quotas_api.dart +++ b/lib/features/quotas/data/network/quotas_api.dart @@ -3,7 +3,7 @@ import 'package:jmap_dart_client/jmap/account_id.dart'; import 'package:jmap_dart_client/jmap/jmap_request.dart'; import 'package:jmap_dart_client/jmap/quotas/get/get_quota_method.dart'; import 'package:jmap_dart_client/jmap/quotas/get/get_quota_response.dart'; -import 'package:tmail_ui_user/features/quotas/domain/model/exceptions/quotas_exception.dart'; +import 'package:tmail_ui_user/features/quotas/domain/exceptions/quotas_exception.dart'; import 'package:tmail_ui_user/features/quotas/domain/model/quotas_response.dart'; class QuotasAPI { diff --git a/lib/features/quotas/domain/model/exceptions/quotas_exception.dart b/lib/features/quotas/domain/exceptions/quotas_exception.dart similarity index 100% rename from lib/features/quotas/domain/model/exceptions/quotas_exception.dart rename to lib/features/quotas/domain/exceptions/quotas_exception.dart