A corporation manager and dashboard for EVE Online
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

14 satır
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