AbpHandledExceptionData.cs 498 B

1234567891011121314151617181920
  1. using System;
  2. namespace Abp.Events.Bus.Exceptions
  3. {
  4. /// <summary>
  5. /// This type of events are used to notify for exceptions handled by ABP infrastructure.
  6. /// </summary>
  7. public class AbpHandledExceptionData : ExceptionData
  8. {
  9. /// <summary>
  10. /// Constructor.
  11. /// </summary>
  12. /// <param name="exception">Exception object</param>
  13. public AbpHandledExceptionData(Exception exception)
  14. : base(exception)
  15. {
  16. }
  17. }
  18. }