Skip to content

Exceptions using PYESPN

Custom Exceptions thrown by PYESPN package

API400Error

Bases: Exception

Exception raised when a 400 error is raised from the espn api

Source code in pyespn/exceptions/api.py
2
3
4
5
6
7
8
class API400Error(Exception):
    """Exception raised when a 400 error is raised from the espn api"""
    def __init__(self, error_code, error_message, message="espn api returned error: "):
        self.error_code = error_code
        self.error_message = error_message
        self.message = f"{message}{self.error_code} | error message {self.error_message})"
        super().__init__(self.message)

NoDataReturnedError

Bases: Exception

Exception raised when no data is returned from the espn api but not an error

Source code in pyespn/exceptions/api.py
class NoDataReturnedError(Exception):
    """Exception raised when no data is returned from the espn api but not an error"""
    def __init__(self, code, message="espn api returned no data"):
        self.code = code
        self.message = f"{message} | status code {self.code}"
        super().__init__(self.message)

JSONNotProvidedError

Bases: Exception

Exception raised when the json is not provided

Source code in pyespn/exceptions/classes.py
2
3
4
5
6
7
class JSONNotProvidedError(Exception):
    """Exception raised when the json is not provided"""
    def __init__(self, error_message, message="json object not provided to create class: "):
        self.error_message = error_message
        self.message = f"{message} {self.error_message})"
        super().__init__(self.message)

InvalidLeagueError

Bases: Exception

Exception raised when The league you have used is not a valid league abbreviation within pyespn.

Source code in pyespn/exceptions/leagues.py
class InvalidLeagueError(Exception):
    """Exception raised when The league you have used is not a valid league abbreviation within pyespn."""
    def __init__(self, league_abbv, message="This league does not support this operation."):
        self.league_abbv = league_abbv
        self.message = f"{message} (League: {league_abbv})"
        super().__init__(self.message)

LeagueNotAvailableError

Bases: Exception

Exception raised whenThe league you have used is within the espn api but has not been developed within pyespn at this point.

Source code in pyespn/exceptions/leagues.py
class LeagueNotAvailableError(Exception):
    """Exception raised whenThe league you have used is within the espn api but has not been developed within pyespn at this point."""
    def __init__(self, league_abbv, message="This league does not support this operation."):
        self.league_abbv = league_abbv
        self.message = f"{message} (League: {league_abbv})"
        super().__init__(self.message)

LeagueNotSupportedError

Bases: Exception

Exception raised when a league is not supported for a certain operation/client creation.

Source code in pyespn/exceptions/leagues.py
2
3
4
5
6
7
class LeagueNotSupportedError(Exception):
    """Exception raised when a league is not supported for a certain operation/client creation."""
    def __init__(self, league_abbv, message="This league does not support this operation."):
        self.league_abbv = league_abbv
        self.message = f"{message} (League: {league_abbv})"
        super().__init__(self.message)

ScheduleTypeUnknownError

Bases: Exception

Exception raised when a there is not a schedule type avaiable witin pyespn

Source code in pyespn/exceptions/schedules.py
3
4
5
6
7
8
class ScheduleTypeUnknownError(Exception):
    """Exception raised when a there is not a schedule type avaiable witin pyespn"""
    def __init__(self, league_abbv, message="Unknown schedule type for: "):
        self.league_abbv = league_abbv
        self.message = f"{message}{self.league_abbv})"
        super().__init__(self.message)