microprobe.exceptions.MicroprobeBranchConditionError

exception MicroprobeBranchConditionError(cond)[source]

Bases: MicroprobeCodeGenerationError

Exception raised when the branch condition is not supported.

Parameters:

string – cond: Condition

__init__(cond)[source]
Parameters:

cond

__str__()[source]
__cause__

exception cause

__context__

exception context

__delattr__(name, /)

Implement delattr(self, name).

__dict__ = mappingproxy({'__module__': 'microprobe.exceptions', '__doc__': 'Exception raised when the branch condition is not supported.\n\n    :param string: cond: Condition\n\n    ', '__init__': <function MicroprobeBranchConditionError.__init__>, '__str__': <function MicroprobeBranchConditionError.__str__>, '__annotations__': {}})
__getattribute__(name, /)

Return getattr(self, name).

__module__ = 'microprobe.exceptions'
__new__(**kwargs)
__reduce__()

Helper for pickle.

__repr__()

Return repr(self).

__setattr__(name, value, /)

Implement setattr(self, name, value).

__setstate__()
__suppress_context__
__traceback__
__weakref__

list of weak references to the object (if defined)

args
with_traceback()

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