[에러코드] 우편 관련 에러코드

관리자 우편 수령 시, 존재하지 않는 postIndate를 입력한 경우
statusCode : 404
errorCode : NotFoundException
message : post not found, post을(를) 찾을 수 없습니다

유저 우편 수령 시, 존재하지 않는 postIndate를 입력한 경우
statusCode : 404
errorCode : NotFoundException
message : no matching post not found, no matching post을(를) 찾을 수 없습니다

이미 받은 유저 우편에 대하여 다시 받기를 요청한 경우
statusCode : 404
errorCode : NotFoundException
message : post not found, post을(를) 찾을 수 없습니다

유저 우편 삭제 시, 존재하지 않는 postIndate를 입력한 경우
statusCode : 400
errorCode : ConditionalCheckFailedException
message : The conditional request failed

우편을 보낼 indate(게임정보)가 잘못된 경우
statusCode : 404
errorCode : NotFoundException
message : it doesn’t exist not found, it doesn’t exist을(를) 찾을 수 없습니다

유저 우편을 자기 자신에게 보낸 경우
sendPost: statusCode : 403
errorCode : ForbiddenException
message : Forbidden don’t send yourself, 금지된 don’t send yourself

보낼 유저 우편의 title, contents가 최소길이/최대길이를 만족하지 않는 경우
(우편 제목의 길이는 1-20자이며 우편 내용은 1-50자 제한입니다)
sendPost: statusCode : 400
errorCode : BadParameterException
message : bad {title/content} length, 잘못된 {title/content} length 입니다

하루에 50개 이상의 우편을 보낸 경우
statusCode : 429
errorCode : Too Many Request
message : 하루에 50개만 가능합니다. 요청 횟수를 초과하였습니다…