0.1.dev2192+g7c539c3.d20250403

flytekit.exceptions.user

Directory

Errors

Exception Description
FlyteAssertion Assertion failed.
FlyteAuthenticationException Assertion failed.
FlyteCompilationException Common base class for all non-exit exceptions.
FlyteDataNotFoundException Inappropriate argument value (of correct type).
FlyteDisapprovalException Assertion failed.
FlyteEntityAlreadyExistsException Assertion failed.
FlyteEntityNotExistException Assertion failed.
FlyteEntityNotFoundException Inappropriate argument value (of correct type).
FlyteFailureNodeInputMismatchException Assertion failed.
FlyteInvalidInputException Common base class for all non-exit exceptions.
FlyteMissingReturnValueException Common base class for all non-exit exceptions.
FlyteMissingTypeException Common base class for all non-exit exceptions.
FlytePromiseAttributeResolveException Assertion failed.
FlyteRecoverableException Common base class for all non-exit exceptions.
FlyteTimeout Assertion failed.
FlyteTypeException Inappropriate argument type.
FlyteUserException Common base class for all non-exit exceptions.
FlyteUserRuntimeException Common base class for all non-exit exceptions.
FlyteValidationException Assertion failed.
FlyteValueException Inappropriate argument value (of correct type).

flytekit.exceptions.user.FlyteAssertion

Assertion failed.

class FlyteAssertion(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteAuthenticationException

Assertion failed.

class FlyteAuthenticationException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteCompilationException

Common base class for all non-exit exceptions.

class FlyteCompilationException(
    fn: typing.Callable,
    param_name: typing.Optional[str],
)
Parameter Type
fn typing.Callable
param_name typing.Optional[str]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteDataNotFoundException

Inappropriate argument value (of correct type).

class FlyteDataNotFoundException(
    path: str,
)
Parameter Type
path str

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteDisapprovalException

Assertion failed.

class FlyteDisapprovalException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteEntityAlreadyExistsException

Assertion failed.

class FlyteEntityAlreadyExistsException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteEntityNotExistException

Assertion failed.

class FlyteEntityNotExistException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteEntityNotFoundException

Inappropriate argument value (of correct type).

class FlyteEntityNotFoundException(
    module_name: str,
    entity_name: str,
)
Parameter Type
module_name str
entity_name str

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteFailureNodeInputMismatchException

Assertion failed.

class FlyteFailureNodeInputMismatchException(
    failure_node_node: typing.Union[ForwardRef('WorkflowBase'), ForwardRef('Task')],
    workflow: WorkflowBase,
)
Parameter Type
failure_node_node typing.Union[ForwardRef('WorkflowBase'), ForwardRef('Task')]
workflow WorkflowBase

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteInvalidInputException

Common base class for all non-exit exceptions.

class FlyteInvalidInputException(
    request: typing.Any,
)
Parameter Type
request typing.Any

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteMissingReturnValueException

Common base class for all non-exit exceptions.

class FlyteMissingReturnValueException(
    fn: typing.Callable,
    param_name: typing.Optional[str],
)
Parameter Type
fn typing.Callable
param_name typing.Optional[str]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteMissingTypeException

Common base class for all non-exit exceptions.

class FlyteMissingTypeException(
    fn: typing.Callable,
    param_name: typing.Optional[str],
)
Parameter Type
fn typing.Callable
param_name typing.Optional[str]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlytePromiseAttributeResolveException

Assertion failed.

class FlytePromiseAttributeResolveException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteRecoverableException

Common base class for all non-exit exceptions.

class FlyteRecoverableException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteTimeout

Assertion failed.

class FlyteTimeout(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteTypeException

Inappropriate argument type.

class FlyteTypeException(
    received_type,
    expected_type,
    additional_msg,
    received_value,
)
Parameter Type
received_type
expected_type
additional_msg
received_value

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteUserException

Common base class for all non-exit exceptions.

class FlyteUserException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteUserRuntimeException

Common base class for all non-exit exceptions.

class FlyteUserRuntimeException(
    exc_value: Exception,
    timestamp: typing.Optional[float],
)

FlyteUserRuntimeException is thrown when a user code raises an exception.

Parameter Type
exc_value Exception
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch
value

flytekit.exceptions.user.FlyteValidationException

Assertion failed.

class FlyteValidationException(
    args,
    timestamp: typing.Optional[float],
)
Parameter Type
args *args
timestamp typing.Optional[float]

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch

flytekit.exceptions.user.FlyteValueException

Inappropriate argument value (of correct type).

class FlyteValueException(
    received_value,
    error_message,
)
Parameter Type
received_value
error_message

Properties

Property Type Description
timestamp
The timestamp as fractional seconds since epoch