mirror of https://github.com/Bunsly/JobSpy
22 lines
555 B
Python
22 lines
555 B
Python
"""
|
|
jobspy.scrapers.exceptions
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
This module contains the set of Scrapers' exceptions.
|
|
"""
|
|
|
|
|
|
class LinkedInException(Exception):
|
|
def __init__(self, message=None):
|
|
super().__init__(message or "An error occurred with LinkedIn")
|
|
|
|
|
|
class IndeedException(Exception):
|
|
def __init__(self, message=None):
|
|
super().__init__(message or "An error occurred with Indeed")
|
|
|
|
|
|
class ZipRecruiterException(Exception):
|
|
def __init__(self, message=None):
|
|
super().__init__(message or "An error occurred with ZipRecruiter")
|