Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

error.py 171B

1234567
  1. from libs.exception import BaseHTTPException
  2. class ApiKeyAuthFailedError(BaseHTTPException):
  3. error_code = 'auth_failed'
  4. description = "{message}"
  5. code = 500