Coverage for pds_crawler/exception/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

9 statements  

1# -*- coding: utf-8 -*- 

2# pds-crawler - ETL to index PDS data to pdssp 

3# Copyright (C) 2023 - CNES (Jean-Christophe Malapert for Pôle Surfaces Planétaires) 

4# This file is part of pds-crawler <https://github.com/pdssp/pds_crawler> 

5# SPDX-License-Identifier: LGPL-3.0-or-later 

6from .extractor import CrawlerError 

7from .extractor import DateConversionError 

8from .extractor import NoFileExistInFolder 

9from .extractor import ParserTimeOutError 

10from .extractor import PdsCatalogDescriptionError 

11from .extractor import PdsCollectionAttributeError 

12from .extractor import PdsRecordAttributeError 

13from .extractor import PlanetNotFound 

14 

15__all__ = [ 

16 "PdsCollectionAttributeError", 

17 "PdsRecordAttributeError", 

18 "NoFileExistInFolder", 

19 "PdsCatalogDescriptionError", 

20 "PlanetNotFound", 

21 "DateConversionError", 

22 "CrawlerError", 

23 "ParserTimeOutError", 

24]