diff options
author | crupest <crupest@outlook.com> | 2024-11-11 01:12:29 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-01-16 21:14:14 +0800 |
commit | c0ba4d9d8d19d3faa7b4d2b3509546e37dd32364 (patch) | |
tree | 4b3d969850981094ba33e18ac9ec49fbc409dc93 /tools/cru-py/cru/__init__.py | |
parent | 7f2e4107e7f469d6747350487e9441d9b987de47 (diff) | |
download | crupest-c0ba4d9d8d19d3faa7b4d2b3509546e37dd32364.tar.gz crupest-c0ba4d9d8d19d3faa7b4d2b3509546e37dd32364.tar.bz2 crupest-c0ba4d9d8d19d3faa7b4d2b3509546e37dd32364.zip |
HALF WORK: 2024.1.16
Diffstat (limited to 'tools/cru-py/cru/__init__.py')
-rw-r--r-- | tools/cru-py/cru/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/cru-py/cru/__init__.py b/tools/cru-py/cru/__init__.py index 7c1a5f1..66732ea 100644 --- a/tools/cru-py/cru/__init__.py +++ b/tools/cru-py/cru/__init__.py @@ -2,11 +2,11 @@ import sys from ._base import CRU, CruNamespaceError, CRU_NAME_PREFIXES from ._error import ( - cru_unreachable, CruException, - CruUserFriendlyException, + CruLogicError, CruInternalError, CruUnreachableError, + cru_unreachable, ) from ._const import ( CruConstantBase, @@ -40,11 +40,11 @@ __all__ = [ "CRU_NAME_PREFIXES", "check_python_version", "CruException", - "cru_unreachable", - "CruInitError", - "CruUserFriendlyException", "CruInternalError", + "CruLogicError", "CruUnreachableError", + "cru_unreachable", + "CruInitError", "CruConstantBase", "CruDontChange", "CruNotFound", |