using System; namespace NzbDrone.Common.Exceptron.Message { public class ExceptionResponse { /// /// Exception report reference ID. This ID will be shared across /// similar exceptions /// public string RefId { get; internal set; } /// /// Was the report successfully processed on the server /// public bool Successful => !string.IsNullOrEmpty(RefId); /// /// Exception that caused the message to fail. /// /// /// This property will only be populated if is set to /> /// Exception is thrown if is set to . /// public Exception Exception { get; internal set; } } }