fix: change OutputParserError to inherit from ValueError (#11935)

Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
-LAN-
2024-12-21 21:21:30 +08:00
committed by GitHub
parent 606aadb891
commit 810adb8a94

View File

@@ -1,2 +1,2 @@
class OutputParserError(Exception):
class OutputParserError(ValueError):
pass