Repositories
Help
py.lib.aw_config
Commits
Files
Yohn Y.
2024-05-05
Parent:
bece3a8a67a5
4:cafe05bbad21
Go to Latest
py.lib.aw_config/src/aw_config/error.py
. Разбираемся с зависимостями
Download raw file
View source
Diff to previous
Annotate
History
Loading...
awgur@0
1
# coding: utf-8
awgur@0
2
awgur@0
3
class
Error
(
Exception
):
awgur@0
4
@staticmethod
awgur@0
5
def
fmt_error
(
err
:
Exception
):
awgur@0
6
return
'
%s
(
%s
)'
%
(
type
(
err
)
.
__name__
,
err
)