lambda/src/utils/errors/export_error.py

6 lines
134 B
Python

class ExportError(Exception):
def __init__(self, message: str):
super().__init__(message)
self.message = message