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