From 5daaacd05302e0931af0e964496fcbba681dfa25 Mon Sep 17 00:00:00 2001 From: TakayukiTanabe Date: Sat, 4 Jan 2025 00:39:01 +0900 Subject: [PATCH] made HttpMethodException --- .../src/airflow/providers/http/exceptions.py | 22 +++++++++++++++++++ .../src/airflow/providers/http/hooks/http.py | 1 + 2 files changed, 23 insertions(+) create mode 100644 providers/src/airflow/providers/http/exceptions.py diff --git a/providers/src/airflow/providers/http/exceptions.py b/providers/src/airflow/providers/http/exceptions.py new file mode 100644 index 0000000000000..57c440a691113 --- /dev/null +++ b/providers/src/airflow/providers/http/exceptions.py @@ -0,0 +1,22 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +from airflow.exceptions import AirflowException + + +class HttpMethodException(AirflowException): + """Exception raised for invalid HTTP methods in Http hook.""" diff --git a/providers/src/airflow/providers/http/hooks/http.py b/providers/src/airflow/providers/http/hooks/http.py index ef4451ad17eeb..0c9bc16104fa2 100644 --- a/providers/src/airflow/providers/http/hooks/http.py +++ b/providers/src/airflow/providers/http/hooks/http.py @@ -32,6 +32,7 @@ from airflow.exceptions import AirflowException from airflow.hooks.base import BaseHook +from airflow.providers.http.exceptions import HttpMethodException if TYPE_CHECKING: from aiohttp.client_reqrep import ClientResponse