Exception

dotflow.core.exception.MissingActionDecorator

Bases: Exception

Source code in dotflow/core/exception.py
11
12
13
14
15
16
class MissingActionDecorator(Exception):

    def __init__(self):
        super(MissingActionDecorator, self).__init__(
            MESSAGE_MISSING_STEP_DECORATOR
        )

__init__()

Source code in dotflow/core/exception.py
13
14
15
16
def __init__(self):
    super(MissingActionDecorator, self).__init__(
        MESSAGE_MISSING_STEP_DECORATOR
    )

dotflow.core.exception.ExecutionModeNotExist

Bases: Exception

Source code in dotflow/core/exception.py
19
20
21
22
23
24
class ExecutionModeNotExist(Exception):

    def __init__(self):
        super(ExecutionModeNotExist, self).__init__(
            MESSAGE_EXECUTION_NOT_EXIST
        )

__init__()

Source code in dotflow/core/exception.py
21
22
23
24
def __init__(self):
    super(ExecutionModeNotExist, self).__init__(
        MESSAGE_EXECUTION_NOT_EXIST
    )

dotflow.core.exception.ImportModuleError

Bases: Exception

Source code in dotflow/core/exception.py
27
28
29
30
31
32
33
34
class ImportModuleError(Exception):

    def __init__(self, module: str):
        super(ImportModuleError, self).__init__(
            MESSAGE_IMPORT_MODULE_ERROR.format(
                module=module
            )
        )

__init__(module)

Source code in dotflow/core/exception.py
29
30
31
32
33
34
def __init__(self, module: str):
    super(ImportModuleError, self).__init__(
        MESSAGE_IMPORT_MODULE_ERROR.format(
            module=module
        )
    )

dotflow.core.exception.NotCallableObject

Bases: Exception

Source code in dotflow/core/exception.py
37
38
39
40
41
42
43
44
class NotCallableObject(Exception):

    def __init__(self, name: str):
        super(NotCallableObject, self).__init__(
            MESSAGE_NOT_CALLABLE_OBJECT.format(
                name=name
            )
        )

__init__(name)

Source code in dotflow/core/exception.py
39
40
41
42
43
44
def __init__(self, name: str):
    super(NotCallableObject, self).__init__(
        MESSAGE_NOT_CALLABLE_OBJECT.format(
            name=name
        )
    )

dotflow.core.exception.ProblemOrdering

Bases: Exception

Source code in dotflow/core/exception.py
47
48
49
50
51
52
53
54
class ProblemOrdering(Exception):

    def __init__(self, name: str):
        super(ProblemOrdering, self).__init__(
            MESSAGE_PROBLEM_ORDERING.format(
                name=name
            )
        )

__init__(name)

Source code in dotflow/core/exception.py
49
50
51
52
53
54
def __init__(self, name: str):
    super(ProblemOrdering, self).__init__(
        MESSAGE_PROBLEM_ORDERING.format(
            name=name
        )
    )