You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
329 B

from .scraper_exceptions import (
ScraperException,
NetworkException,
ParseException,
ValidationException,
StorageException,
StrategyException
)
__all__ = [
'ScraperException',
'NetworkException',
'ParseException',
'ValidationException',
'StorageException',
'StrategyException'
]