mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
18 lines
352 B
Python
18 lines
352 B
Python
from abc import ABC
|
|
|
|
from aiogram.handlers.base import BaseHandler
|
|
|
|
|
|
class ErrorHandler(BaseHandler[Exception], ABC):
|
|
"""
|
|
Base class for errors handlers
|
|
"""
|
|
|
|
@property
|
|
def exception_name(self) -> str:
|
|
return self.event.__class__.__name__
|
|
|
|
@property
|
|
def exception_message(self) -> str:
|
|
return str(self.event)
|