| 123456789101112131415161718192021222324 |
- using System;
- namespace Abp.Domain.Uow
- {
- /// <summary>
- /// Used as event arguments on <see cref="IActiveUnitOfWork.Failed"/> event.
- /// </summary>
- public class UnitOfWorkFailedEventArgs : EventArgs
- {
- /// <summary>
- /// Exception that caused failure.
- /// </summary>
- public Exception Exception { get; private set; }
- /// <summary>
- /// Creates a new <see cref="UnitOfWorkFailedEventArgs"/> object.
- /// </summary>
- /// <param name="exception">Exception that caused failure</param>
- public UnitOfWorkFailedEventArgs(Exception exception)
- {
- Exception = exception;
- }
- }
- }
|