microprobe.exceptions.MicroprobeNoGenerationPathError

exception MicroprobeNoGenerationPathError(target, origin, address)[source]

Bases: microprobe.exceptions.MicroprobeCodeGenerationError

Exception raised when there is not a path suitable to generate a given value using the available Generator instances.

Parameters
  • target (int) – Value to generate.

  • origin (int) – Starting value.

  • address (bool) – If value to generate is an address.

__init__(target, origin, address)[source]
Parameters
  • target

  • origin

  • address

__str__()[source]
__cause__

exception cause

__class__

alias of builtins.type

__context__

exception context

__delattr__()

Implement delattr(self, name).

__dict__ = mappingproxy({'__module__': 'microprobe.exceptions', '__doc__': 'Exception raised when there is not a path suitable to generate a given\n value using the available :class:`~.Generator`\n instances.\n\n :param target: Value to generate.\n :type target: :class:`~.int`\n :param origin: Starting value.\n :type origin: :class:`~.int`\n :param address: If value to generate is an address.\n :type address: :class:`~.bool`\n\n ', '__init__': <function MicroprobeNoGenerationPathError.__init__>, '__str__': <function MicroprobeNoGenerationPathError.__str__>})
__dir__() → list

default dir() implementation

__eq__()

Return self==value.

__format__()

default object formatter

__ge__()

Return self>=value.

__getattribute__()

Return getattr(self, name).

__gt__()

Return self>value.

__hash__()

Return hash(self).

__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__()

Return self<=value.

__lt__()

Return self<value.

__module__ = 'microprobe.exceptions'
__ne__()

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__()

Return repr(self).

__setattr__()

Implement setattr(self, name, value).

__setstate__()
__sizeof__() → int

size of object in memory, in bytes

__subclasshook__()

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__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.