using System; namespace Abp.Events.Bus.Exceptions { /// /// This type of events can be used to notify for an exception. /// public class ExceptionData : EventData { /// /// Exception object. /// public Exception Exception { get; private set; } /// /// Constructor. /// /// Exception object public ExceptionData(Exception exception) { Exception = exception; } } }