diff --git a/src/frida/core.py b/src/frida/core.py index e51f284..e02db92 100644 --- a/src/frida/core.py +++ b/src/frida/core.py @@ -123,6 +123,9 @@ class FunctionContainer(object): return f return self._do_ensure_function(address) + def _do_ensure_function(self, address): + raise NotImplementedError("not implemented") + class Process(FunctionContainer): def __init__(self, session): super(Process, self).__init__()