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
commit 810adb8a94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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