Exceptions¶ fastapi_gcp_tasks.exception ¶ MissingParamError ¶ MissingParamError(**ctx: object) Bases: ValueError Error raised when a required parameter is missing. Source code in fastapi_gcp_tasks/exception.py 6 7def __init__(self, **ctx: object) -> None: super().__init__(self.msg_template.format(**ctx)) WrongTypeError ¶ WrongTypeError(**ctx: object) Bases: ValueError Error raised when a parameter is of the wrong type. Source code in fastapi_gcp_tasks/exception.py 15 16def __init__(self, **ctx: object) -> None: super().__init__(self.msg_template.format(**ctx)) BadMethodError ¶ Bases: Exception Error raised when an invalid method is passed to a task.