Source code for metatrain.utils.errors

[docs] class ArchitectureError(Exception): """ Exception raised for errors originating from architectures This exception should be raised when an error occurs within an architecture's operation, indicating that the problem is not directly related to the metatrain infrastructure but rather to the specific architecture being used. :param exception: The original exception that was caught, which led to raising this custom exception. """ def __init__(self, exception): super().__init__( f"{exception.__class__.__name__}: {exception}\n\n" "The error above most likely originates from an architecture.\n\n" "If you think this is a bug, please contact its maintainer (see the " "architecture's documentation) and include the full traceback error.log." )