Errors module

Collection of generic exception classes used everywhere in the project. The most important one is SimplelineError, which is the base exception for all the other exceptions used in the Simpleline project.

exception simpleline.errors.SimplelineError

Bases: Exception

Base exception for all other exceptions.

Render exceptions

Exceptions used for rendering errors.

exception simpleline.render.RenderError

Bases: simpleline.errors.SimplelineError

Exception raised when error in rendering happens.

exception simpleline.render.RenderUnexpectedError

Bases: simpleline.render.RenderError

Exception raised when something goes really wrong.

Event loop exceptions

Exceptions used for errors in event loops.

exception simpleline.event_loop.ExitMainLoop

Bases: simpleline.errors.SimplelineError

This exception ends the whole event loop.