A corporation manager and dashboard for EVE Online
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

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