57 lines
1.2 KiB
Python
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",
|
|
]
|