cytoflow.utility.cytoflow_errors

Custom errors for cytoflow. Allows for custom handling in the GUI.

exception cytoflow.utility.cytoflow_errors.CytoflowError[source]

Bases: RuntimeError

A general error

exception cytoflow.utility.cytoflow_errors.CytoflowOpError[source]

Bases: cytoflow.utility.cytoflow_errors.CytoflowError

An error raised by an operation.

Parameters:
  • args[0] (string) – The attribute or parameter whose bad value caused the error, or None if there isn’t one.
  • args[1] (string) – A more verbose error message.
exception cytoflow.utility.cytoflow_errors.CytoflowViewError[source]

Bases: cytoflow.utility.cytoflow_errors.CytoflowError

An error raised by a view.

Parameters:
  • args[0] (string) – The attribute or parameter whose bad value caused the error, or None if there isn’t one.
  • args[1] (string) – A more verbose error message.
exception cytoflow.utility.cytoflow_errors.CytoflowWarning[source]

Bases: UserWarning

A general warning.

exception cytoflow.utility.cytoflow_errors.CytoflowOpWarning[source]

Bases: cytoflow.utility.cytoflow_errors.CytoflowWarning

A warning raised by an operation.

Parameters:args[0] (string) – A verbose warning message
exception cytoflow.utility.cytoflow_errors.CytoflowViewWarning[source]

Bases: cytoflow.utility.cytoflow_errors.CytoflowWarning

A warning raised by a view.

Parameters:args[0] (string) – A verbose warning message