Repositories
Help
tools.win_pg_dump_controller
Commits
Files
Yohn Y.
2022-05-05
Parent:
be791d354d2a
2:7c93b0305522
Go to Latest
tools.win_pg_dump_controller/win_pg_dump_controller/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
err_fmt
(
e
:
Exception
)
->
str
:
6
return
f
'
{
type
(
e
)
}
(
{
e
}
)'
7
8
def
__str__
(
self
):
9
return
f
'
{
super
()
.
__str__
()
}
- [
{
type
(
self
)
.
__name__
}
]'