Files
microsoft--semantic-kernel/python/semantic_kernel/exceptions/content_exceptions.py
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

57 lines
1.2 KiB
Python

# Copyright (c) Microsoft. All rights reserved.
from semantic_kernel.exceptions.kernel_exceptions import KernelException
class ContentException(KernelException):
"""Base class for all content exceptions."""
pass
class ContentInitializationError(ContentException):
"""An error occurred while initializing the content."""
pass
class ContentSerializationError(ContentException):
"""An error occurred while serializing the content."""
pass
class ContentAdditionException(ContentException):
"""An error occurred while adding content."""
pass
class FunctionCallInvalidNameException(ContentException):
"""An error occurred while validating the function name."""
pass
class FunctionCallInvalidArgumentsException(ContentException):
"""An error occurred while validating the function arguments."""
pass
class ChatHistoryReducerException(ContentException):
"""An error occurred while reducing chat history."""
pass
__all__ = [
"ChatHistoryReducerException",
"ContentAdditionException",
"ContentException",
"ContentInitializationError",
"ContentSerializationError",
"FunctionCallInvalidArgumentsException",
"FunctionCallInvalidNameException",
]