mirror of
https://github.com/langgenius/dify.git
synced 2026-03-14 19:38:37 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
11 lines
194 B
Python
11 lines
194 B
Python
class BaseNodeError(ValueError):
|
|
"""Base class for node errors."""
|
|
|
|
pass
|
|
|
|
|
|
class DefaultValueTypeError(BaseNodeError):
|
|
"""Raised when the default value type is invalid."""
|
|
|
|
pass
|