using System;
namespace Abp.Events.Bus.Exceptions
{
///
/// This type of events are used to notify for exceptions handled by ABP infrastructure.
///
public class AbpHandledExceptionData : ExceptionData
{
///
/// Constructor.
///
/// Exception object
public AbpHandledExceptionData(Exception exception)
: base(exception)
{
}
}
}