minto.v1.exceptions#

Exceptions for minto v1 module.

This module defines custom exceptions for the minto v1 module to provide more informative error messages when data loading fails.

Exceptions#

MintoError

Base exception for all minto v1 errors.

DataLoadError

Base exception for errors that occur during data loading.

FileNotFoundError

Exception raised when a required file is not found.

FileCorruptionError

Exception raised when a file is corrupted or has invalid format.

MetadataError

Base exception for errors related to metadata.

MissingMetadataError

Exception raised when required metadata is missing.

InvalidMetadataError

Exception raised when metadata has invalid format or values.

Module Contents#

exception MintoError#

Bases: Exception

Base exception for all minto v1 errors.

Initialize self. See help(type(self)) for accurate signature.

exception DataLoadError#

Bases: MintoError

Base exception for errors that occur during data loading.

Initialize self. See help(type(self)) for accurate signature.

exception FileNotFoundError#

Bases: DataLoadError

Exception raised when a required file is not found.

Initialize self. See help(type(self)) for accurate signature.

exception FileCorruptionError#

Bases: DataLoadError

Exception raised when a file is corrupted or has invalid format.

Initialize self. See help(type(self)) for accurate signature.

exception MetadataError#

Bases: DataLoadError

Base exception for errors related to metadata.

Initialize self. See help(type(self)) for accurate signature.

exception MissingMetadataError#

Bases: MetadataError

Exception raised when required metadata is missing.

Initialize self. See help(type(self)) for accurate signature.

exception InvalidMetadataError#

Bases: MetadataError

Exception raised when metadata has invalid format or values.

Initialize self. See help(type(self)) for accurate signature.