class ServiceInfoError(RuntimeError): """General error that is shown as system error on the front end""" def __init__(self, message): super().__init__(message) class ServiceUserTokenError(RuntimeError): """Error that triggered by issues with stored token""" def __init__(self, message): super().__init__(message)