This repository has been archived on 2023-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
MirrorTea/mirrortea/repository/exceptions.py

15 lines
297 B
Python

class UserNotFoundError(Exception):
"""User not found!"""
class UserAlreadyExistError(Exception):
"""Token already exits!"""
class MatrixRoomNotFoundError(Exception):
"""Matrix room not found!"""
class MatrixRoomAlreadyExistError(Exception):
"""matrix room already exits!"""