您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. class TaskPipilineError(ValueError):
  2. pass
  3. class RecordNotFoundError(TaskPipilineError):
  4. def __init__(self, record_name: str, record_id: str):
  5. super().__init__(f"{record_name} with id {record_id} not found")
  6. class WorkflowRunNotFoundError(RecordNotFoundError):
  7. def __init__(self, workflow_run_id: str):
  8. super().__init__("WorkflowRun", workflow_run_id)