microprobe.exceptions.MicroprobeNoComparatorError¶
-
exception
MicroprobeNoComparatorError
(val1, val2)[source]¶ Bases:
microprobe.exceptions.MicroprobeCodeGenerationError
Exception raised when there is no comparator suitable to perform a given action.
- Parameters
-
__annotations__
= {}¶
-
__cause__
¶ exception cause
-
__context__
¶ exception context
-
__delattr__
(name, /)¶ Implement delattr(self, name).
-
__dict__
= mappingproxy({'__module__': 'microprobe.exceptions', '__doc__': 'Exception raised when there is no comparator suitable to perform a\n given action.\n\n :param val1: First value to compare.\n :type val1: :class:`~.int` or :class:`~.Register`\n :param val2: Second value to compare.\n :type val2: :class:`~.int` or :class:`~.Register`\n\n ', '__init__': <function MicroprobeNoComparatorError.__init__>, '__str__': <function MicroprobeNoComparatorError.__str__>, '__annotations__': {}})¶
-
__getattribute__
(name, /)¶ Return getattr(self, name).
-
__module__
= 'microprobe.exceptions'¶
-
__new__
(**kwargs)¶ Create and return a new object. See help(type) for accurate signature.
-
__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.