mirror of
https://github.com/langgenius/dify.git
synced 2026-08-30 20:43:55 +08:00
11 lines
172 B
Python
11 lines
172 B
Python
class BillingError(Exception):
|
|
pass
|
|
|
|
|
|
class BillingUpstreamInvalidResponseError(BillingError):
|
|
pass
|
|
|
|
|
|
class BillingUpstreamUnavailableError(BillingError):
|
|
pass
|