| 1234567891011121314151617181920 |
- using System;
- namespace Abp.Events.Bus.Exceptions
- {
- /// <summary>
- /// This type of events are used to notify for exceptions handled by ABP infrastructure.
- /// </summary>
- public class AbpHandledExceptionData : ExceptionData
- {
- /// <summary>
- /// Constructor.
- /// </summary>
- /// <param name="exception">Exception object</param>
- public AbpHandledExceptionData(Exception exception)
- : base(exception)
- {
- }
- }
- }
|