mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-13 07:04:51 -06:00
chore:Restore errors path in copybara
PiperOrigin-RevId: 766888018
This commit is contained in:
parent
433c423d35
commit
32c5ffa8ca
13
src/google/adk/errors/__init__.py
Normal file
13
src/google/adk/errors/__init__.py
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright 2025 Google LLC
|
||||
#
|
||||
# Licensed 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.
|
28
src/google/adk/errors/not_found_error.py
Normal file
28
src/google/adk/errors/not_found_error.py
Normal file
@ -0,0 +1,28 @@
|
||||
# Copyright 2025 Google LLC
|
||||
#
|
||||
# Licensed 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 __future__ import annotations
|
||||
|
||||
|
||||
class NotFoundError(Exception):
|
||||
"""Represents an error that occurs when an entity is not found."""
|
||||
|
||||
def __init__(self, message="The requested item was not found."):
|
||||
"""Initializes the NotFoundError exception.
|
||||
|
||||
Args:
|
||||
message (str): An optional custom message to describe the error.
|
||||
"""
|
||||
self.message = message
|
||||
super().__init__(self.message)
|
Loading…
Reference in New Issue
Block a user