From b9e980db9473fd4d1c3d26f6617bf31bb53c51b7 Mon Sep 17 00:00:00 2001 From: dev1lfreak Date: Thu, 28 May 2026 16:56:07 +0300 Subject: [PATCH] refactor: change import paths --- src/application/domain/exceptions/bad_request_exception.py | 2 +- src/application/domain/exceptions/conflict_exception.py | 2 +- src/application/domain/exceptions/forbidden_exception.py | 2 +- src/application/domain/exceptions/internal_exception.py | 2 +- src/application/domain/exceptions/not_found_exception.py | 2 +- .../domain/exceptions/service_unavailable_exception.py | 2 +- .../domain/exceptions/too_many_requests_exception.py | 2 +- src/application/domain/exceptions/unauthorized_exception.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/application/domain/exceptions/bad_request_exception.py b/src/application/domain/exceptions/bad_request_exception.py index a55bcec..614285c 100644 --- a/src/application/domain/exceptions/bad_request_exception.py +++ b/src/application/domain/exceptions/bad_request_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/conflict_exception.py b/src/application/domain/exceptions/conflict_exception.py index 462dfc7..b91af99 100644 --- a/src/application/domain/exceptions/conflict_exception.py +++ b/src/application/domain/exceptions/conflict_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/forbidden_exception.py b/src/application/domain/exceptions/forbidden_exception.py index fb561c4..18809d7 100644 --- a/src/application/domain/exceptions/forbidden_exception.py +++ b/src/application/domain/exceptions/forbidden_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/internal_exception.py b/src/application/domain/exceptions/internal_exception.py index 6b34899..b3c31ae 100644 --- a/src/application/domain/exceptions/internal_exception.py +++ b/src/application/domain/exceptions/internal_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/not_found_exception.py b/src/application/domain/exceptions/not_found_exception.py index 2fb4a43..33a7056 100644 --- a/src/application/domain/exceptions/not_found_exception.py +++ b/src/application/domain/exceptions/not_found_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/service_unavailable_exception.py b/src/application/domain/exceptions/service_unavailable_exception.py index 8d6c7ab..db05f65 100644 --- a/src/application/domain/exceptions/service_unavailable_exception.py +++ b/src/application/domain/exceptions/service_unavailable_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/too_many_requests_exception.py b/src/application/domain/exceptions/too_many_requests_exception.py index adf2a16..64c47fa 100644 --- a/src/application/domain/exceptions/too_many_requests_exception.py +++ b/src/application/domain/exceptions/too_many_requests_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping diff --git a/src/application/domain/exceptions/unauthorized_exception.py b/src/application/domain/exceptions/unauthorized_exception.py index a92fd35..bd103a5 100644 --- a/src/application/domain/exceptions/unauthorized_exception.py +++ b/src/application/domain/exceptions/unauthorized_exception.py @@ -1,4 +1,4 @@ -from application.domain.exceptions.application_exceptions import ApplicationException +from src.application.domain.exceptions.application_exceptions import ApplicationException from typing import Mapping