Source code for SwiftPhotom.errors

[docs]class FilterError(Exception): def __init__(self): super().__init__('No filter recognized.')
[docs]class ListError(Exception): def __init__(self,file): super().__init__('No usable file found in {}.'.format(file))
[docs]class FileNotFound(Exception): def __init__(self): super().__init__('Cannot interpret input file.')