python-mattebox/mattebox/exceptions.py
2021-09-16 18:12:42 +02:00

11 lines
213 B
Python

import json
class MatteBOXException(Exception):
def __init__(self, e: Exception) -> None:
super().__init__(json.loads(str(e))["errorMessage"])
class RecordingException(MatteBOXException):
pass