modular_sdk/commons/exception.py (6 lines of code) (raw):

class ModularException(Exception): def __init__(self, code, content): self.code = code self.content = content def __str__(self): return f'{self.code}:{self.content}'