Skip to content

Commit

Permalink
made HttpMethodException
Browse files Browse the repository at this point in the history
  • Loading branch information
TakayukiTanabeSS committed Jan 3, 2025
1 parent 6a01554 commit 5daaacd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions providers/src/airflow/providers/http/exceptions.py
Original file line number Diff line number Diff line change
@@ -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."""
1 change: 1 addition & 0 deletions providers/src/airflow/providers/http/hooks/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5daaacd

Please sign in to comment.