tools.win_pg_dump_controller

Yohn Y. 2022-05-05 Parent:be791d354d2a

2:7c93b0305522 Go to Latest

tools.win_pg_dump_controller/win_pg_dump_controller/error.py

+ Возможность отправлять оповещения по почте

History
1 # coding: utf-8
3 class Error(Exception):
4 @staticmethod
5 def err_fmt(e: Exception) -> str:
6 return f'{type(e)}({e})'
8 def __str__(self):
9 return f'{super().__str__()} - [{type(self).__name__}]'