tools.win_pg_dump_controller

Yohn Y. 2022-06-13 Parent:be791d354d2a

6:26558a3ee4f3 Go to Latest

tools.win_pg_dump_controller/win_pg_dump_controller/error.py

Добавлен GIT репозиторий для тестов

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__}]'