選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

35 行
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."""