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