public MessagingException(string message, bool isTransientError, Exception innerException) : base(message, innerException) { MessagingExceptionDetail messagingExceptionDetail = MessagingExceptionDetail.UnknownDetail(message); this.Initialize(messagingExceptionDetail, null, DateTime.UtcNow); this.IsTransient = isTransientError; }
public MessagingException(string message, Exception innerException) : base(message, innerException) { MessagingExceptionDetail messagingExceptionDetail = MessagingExceptionDetail.UnknownDetail(message); this.Initialize(messagingExceptionDetail, null, DateTime.UtcNow); }
public InternalServerErrorException(TrackingContext context) : base(MessagingExceptionDetail.UnknownDetail(SRClient.InternalServerError), context) { this.Initialize(); }