public ReleaseParticipantExternalIdEmptyException(ReleaseParticipant releaseParticipant, Exception innerException)
     : base(FormatMessage(releaseParticipant), innerException)
 {
 }
 private static string FormatMessage(ReleaseParticipant releaseParticipant)
 {
     return string.Format("Release participant external id cound't be found. Release participant: {0}",
         releaseParticipant);
 }
 public ReleaseParticipantExternalIdEmptyException(ReleaseParticipant releaseParticipant)
     : base(FormatMessage(releaseParticipant))
 {
 }