A corporation manager and dashboard for EVE Online
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

14 řádky
383 B

  1. # -*- coding: utf-8 -*-
  2. class CalefactionError(RuntimeError):
  3. """Base exception class for errors within Calefaction."""
  4. pass
  5. class EVEAPIError(CalefactionError):
  6. """Represents (generally external) errors while using the EVE APIs."""
  7. pass
  8. class AccessDeniedError(CalefactionError):
  9. """The user tried to do something they don't have permission for."""
  10. pass