using System;
using Exceptron.Client.Configuration;
namespace Exceptron.Client.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
{
get
{
return !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; }
}
}