cytoflow.utility.cytoflow_errors

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

CytoflowError – a general error

CytoflowOpError – an error raised by an operation

CytoflowViewError – an error raised by a view

CytoflowWarning – a general warning

CytoflowOpWarning – a warning raised by an operation

CytoflowViewWarning – a warning raised by a view

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