cement.core.exc

Cement core exceptions module.

exception cement.core.exc.CaughtSignal(signum, frame)[source]

Bases: FrameworkError

Raised when a defined signal is caught. For more information regarding signals, reference the signal library.

Parameters:
  • signum (int) – The signal number

  • frame – The signal frame object

exception cement.core.exc.FrameworkError(msg)[source]

Bases: Exception

General framework (non-application) related errors.

Parameters:

msg (str) – The error message

exception cement.core.exc.InterfaceError(msg)[source]

Bases: FrameworkError

Interface related errors.