mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
8 lines
219 B
Python
8 lines
219 B
Python
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class AccountNoMoneyErrorExtend(BaseHTTPException):
|
|
error_code = "Insufficient balance, call failed."
|
|
description = "余额不足,调用失败!"
|
|
code = 403
|