eda_report.exceptions#

exception eda_report.exceptions.EmptyDataError(message: str)[source]#

Bases: InputError

Exception raised when an iterable input object has length zero or has no more items to yield.

exception eda_report.exceptions.Error[source]#

Bases: Exception

The base class for exceptions in this package.

exception eda_report.exceptions.GroupbyVariableError(message: str)[source]#

Bases: InputError

Exception raised when the specified group-by variable is invalid.

exception eda_report.exceptions.InputError(message: str)[source]#

Bases: Error

Exception raised when a given input object is not of the expected type or is otherwise invalid.

In most cases, an attempt is made to cast the erroneous input into the proper type, and this Exception is raised if it fails.

Parameters:

message (str) – A brief description of the mishap detected.