public void SetAttachmentCount(AttachmentCountIncorrect value)
 {
     AttachmentCount = value;
 }
 public AttachmentCountIncorrectException(AttachmentCountIncorrect count)
 {
     SetAttachmentCount(count);
 }
 public AttachmentCountIncorrectException(AttachmentCountIncorrect count, string message, Exception inner) : base(
         message, inner)
 {
     SetAttachmentCount(count);
 }