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

관리자 우편 수령 시, 존재하지 않는 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개만 가능합니다. 요청 횟수를 초과하였습니다…