A corporation manager and dashboard for EVE Online
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

14 rader
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