選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

19 行
367 B

  1. from fastapi import HTTPException
  2. UsernameAlreadyTaken = HTTPException(
  3. status_code=400,
  4. detail="A user with this name already exists."
  5. )
  6. InvalidUserName = HTTPException(
  7. status_code=400,
  8. detail="No user with this name exists."
  9. )
  10. InvalidPermissions = HTTPException(
  11. status_code=401,
  12. detail="You do not have permission for this action."
  13. )