mirror of
https://github.com/langgenius/dify.git
synced 2026-09-01 13:47:18 +08:00
11 lines
172 B
Python
11 lines
172 B
Python
class BillingError(Exception):
|
|
pass
|
|
|
|
|
|
class BillingUpstreamInvalidResponseError(BillingError):
|
|
pass
|
|
|
|
|
|
class BillingUpstreamUnavailableError(BillingError):
|
|
pass
|