A corporation manager and dashboard for EVE Online
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.
|
- # -*- coding: utf-8 -*-
-
- """
- This module contains exceptions for Calefaction.
-
- +-- CalefactionError
- +-- AccessDeniedError
- +-- EVEAPIError
- +-- EVEAPIForbiddenError
- +-- ZKillboardError
- """
-
- class CalefactionError(RuntimeError):
- """Base exception class for errors within Calefaction."""
- pass
-
- class AccessDeniedError(CalefactionError):
- """The user tried to do something they don't have permission for."""
- pass
-
- class EVEAPIError(CalefactionError):
- """Represents (generally external) errors while using the EVE APIs."""
- pass
-
- class EVEAPIForbiddenError(EVEAPIError):
- """We tried to make an API request that we don't have permission for."""
- pass
-
- class ZKillboardError(EVEAPIError):
- """Represents an error while using zKillboard's API."""
- pass
|