mirror of https://github.com/zulip/zulip.git
9 lines
148 B
Python
9 lines
148 B
Python
|
class StripeError(Exception):
|
||
|
http_status: str
|
||
|
|
||
|
class CardError(Exception):
|
||
|
http_status: str
|
||
|
|
||
|
class InvalidRequestError(Exception):
|
||
|
...
|