chore:Restore errors path in copybara

PiperOrigin-RevId: 766888018
This commit is contained in:
Selcuk Gun 2025-06-03 17:29:33 -07:00 committed by Copybara-Service
parent 433c423d35
commit 32c5ffa8ca
2 changed files with 41 additions and 0 deletions

View 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.

View 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)