mirror of
https://github.com/langgenius/dify.git
synced 2026-03-05 07:37:07 +08:00
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
|