cpdbench.exception.CPDExecutionException

1class CPDExecutionException(Exception):
2    """General Exception type when something goes wrong in dataset fetching, algorithm execution or metric
3    calculation."""
4    def __init__(self, message):
5        super().__init__(message)
class CPDExecutionException(builtins.Exception):
2class CPDExecutionException(Exception):
3    """General Exception type when something goes wrong in dataset fetching, algorithm execution or metric
4    calculation."""
5    def __init__(self, message):
6        super().__init__(message)

General Exception type when something goes wrong in dataset fetching, algorithm execution or metric calculation.

CPDExecutionException(message)
5    def __init__(self, message):
6        super().__init__(message)
Inherited Members
builtins.BaseException
with_traceback
args