using System; using System.Data.Common; namespace EasyDev.Database { /// /// /// [Serializable] public class ConcurrencyException : DbException { /// /// Initializes a new instance of the class. /// /// The message. public ConcurrencyException(string message) : base(message) { } /// /// Initializes a new instance of the class. /// /// The message. /// The inner exception. public ConcurrencyException(string message, Exception innerException) : base(message, innerException) { } } }