Repositories
Help
py.lib.aw_config
Commits
Files
Yohn Y.
2024-05-04
Parent:
bece3a8a67a5
1:81fc92335324
Go to Latest
py.lib.aw_config/src/aw_config/error.py
+ Модуль получения имени директории размещения приложения
Download raw file
View source
Diff to previous
Annotate
History
Loading...
1
# coding: utf-8
2
3
class
Error
(
Exception
):
4
@staticmethod
5
def
fmt_error
(
err
:
Exception
):
6
return
'
%s
(
%s
)'
%
(
type
(
err
)
.
__name__
,
err
)