Sha256: bb5ed78ef928a39d6c7bd1603fa244c568245402abf119b32063dc12e42484b3
Contents?: true
Size: 1.23 KB
Versions: 8
Compression:
Stored size: 1.23 KB
Contents
from javonet.core.handler.AbstractCommandHandler import * class GetInstanceMethodAsDelegateHandler(AbstractCommandHandler): def __init__(self): self._required_parameters_count = 2 def process(self, command): try: if len(command.payload) < self._required_parameters_count: raise Exception("InvokeInstanceMethod Parameters mismatch!") class_instance = command.payload[0] try: method = getattr(class_instance, command.payload[1]) except AttributeError: methods = [method for method in dir(class_instance) if callable(getattr(class_instance, method))] message = "Method {} not found in class {}. Available methods:\n".format(command.payload[1], class_instance.__class__.__name__) for method in methods: message += "{}\n".format(method) raise AttributeError(message) return method except Exception as e: exc_type, exc_value = type(e), e new_exc = exc_type(exc_value).with_traceback(e.__traceback__) raise new_exc from None
Version data entries
8 entries across 8 versions & 1 rubygems