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ů.
 
 
 
 

35 řádky
642 B

  1. class ConsoleError(Exception):
  2. """An error in console operation."""
  3. class StyleError(Exception):
  4. """An error in styles."""
  5. class StyleSyntaxError(ConsoleError):
  6. """Style was badly formatted."""
  7. class MissingStyle(StyleError):
  8. """No such style."""
  9. class StyleStackError(ConsoleError):
  10. """Style stack is invalid."""
  11. class NotRenderableError(ConsoleError):
  12. """Object is not renderable."""
  13. class MarkupError(ConsoleError):
  14. """Markup was badly formatted."""
  15. class LiveError(ConsoleError):
  16. """Error related to Live display."""
  17. class NoAltScreen(ConsoleError):
  18. """Alt screen mode was required."""