sym.sdk.exceptions.sym_integration

Exceptions

SymIntegrationError

This is the base class for all SymIntegrationErrors; that is, for errors that occur in functions that integrate internally with the Sym platform.

exception sym.sdk.exceptions.sym_integration.SymIntegrationError(name: str, message: str, error_type: str = 'SymIntegration')

Bases: sym.sdk.exceptions.sym_exception.SymException

This is the base class for all SymIntegrationErrors; that is, for errors that occur in functions that integrate internally with the Sym platform.

Not to be confused with SymException, which is the base class of this exception and is used for all exceptions that occur in the Sym Runtime.

Parameters
  • name – The name of the exception (used as the second part of the error code, e.g. USER_PROCESSING_ERROR)

  • message – The exception message to display

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.