def compileSerpent(self, code): try: return self.compilers['serpent'](code) except KeyError: raise MethodNotFoundError()
def compileLLL(self, code): try: return self.compilers['lll'](code) except KeyError: raise MethodNotFoundError()
def compileSolidity(self, code): try: return self.compilers['solidity'](code) except KeyError: raise MethodNotFoundError()