aboutsummaryrefslogtreecommitdiff
path: root/tools/cru-py/cru/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cru-py/cru/__init__.py')
-rw-r--r--tools/cru-py/cru/__init__.py10
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",