| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Runtime.Serialization;
- namespace Abp.Domain.Uow
- {
- [Serializable]
- public class AbpDbConcurrencyException : AbpException
- {
- /// <summary>
- /// Creates a new <see cref="AbpDbConcurrencyException"/> object.
- /// </summary>
- public AbpDbConcurrencyException()
- {
- }
- /// <summary>
- /// Creates a new <see cref="AbpException"/> object.
- /// </summary>
- public AbpDbConcurrencyException(SerializationInfo serializationInfo, StreamingContext context)
- : base(serializationInfo, context)
- {
- }
- /// <summary>
- /// Creates a new <see cref="AbpDbConcurrencyException"/> object.
- /// </summary>
- /// <param name="message">Exception message</param>
- public AbpDbConcurrencyException(string message)
- : base(message)
- {
- }
- /// <summary>
- /// Creates a new <see cref="AbpDbConcurrencyException"/> object.
- /// </summary>
- /// <param name="message">Exception message</param>
- /// <param name="innerException">Inner exception</param>
- public AbpDbConcurrencyException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|