Changeset View
Changeset View
Standalone View
Standalone View
python_modules/dagster/dagster/core/errors.py
Show First 20 Lines • Show All 444 Lines • ▼ Show 20 Lines | def __init__(self, run_id): | ||||
"Event logs invalid for run id {}".format(run_id) | "Event logs invalid for run id {}".format(run_id) | ||||
) | ) | ||||
class ScheduleExecutionError(DagsterUserCodeExecutionError): | class ScheduleExecutionError(DagsterUserCodeExecutionError): | ||||
"""Errors raised in a user process during the execution of schedule.""" | """Errors raised in a user process during the execution of schedule.""" | ||||
class SensorExecutionError(DagsterUserCodeExecutionError): | |||||
"""Errors raised in a user process during the execution of a sensor (or its job).""" | |||||
class PartitionExecutionError(DagsterUserCodeExecutionError): | class PartitionExecutionError(DagsterUserCodeExecutionError): | ||||
"""Errors raised during the execution of user-provided functions of a partition set schedule.""" | """Errors raised during the execution of user-provided functions of a partition set schedule.""" | ||||
class DagsterInvalidAssetKey(DagsterError): | class DagsterInvalidAssetKey(DagsterError): | ||||
""" Error raised by invalid asset key """ | """ Error raised by invalid asset key """ | ||||
Show All 29 Lines |