Files
microsoft--semantic-kernel/python/semantic_kernel/exceptions/process_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

35 lines
782 B
Python

# Copyright (c) Microsoft. All rights reserved.
from semantic_kernel.exceptions.kernel_exceptions import KernelException
class ProcessException(KernelException):
"""Base class for all process exceptions."""
pass
class ProcessInvalidConfigurationException(ProcessException):
"""An invalid configuration was provided for the process."""
pass
class ProcessTargetFunctionNameMismatchException(ProcessException):
"""A message targeting a function has resulted in a different function becoming invocable."""
pass
class ProcessFunctionNotFoundException(ProcessException):
"""A function was not found in the process."""
pass
class ProcessEventUndefinedException(ProcessException):
"""An event was not defined in the process."""
pass