This commit is contained in:
Aevann1 2021-07-21 03:12:26 +02:00
commit 7a70033dee
944 changed files with 2128438 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class PaymentRequired(Exception):
status_code=402
def __init__(self):
Exception.__init__(self)
self.status_code=402