-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathConcurrencyException.cs
More file actions
31 lines (29 loc) · 1.12 KB
/
Copy pathConcurrencyException.cs
File metadata and controls
31 lines (29 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
namespace NEventStore
{
/// <summary>
/// Represents an optimistic concurrency conflict between multiple writers.
/// </summary>
public class ConcurrencyException : Exception
{
/// <summary>
/// Initializes a new instance of the ConcurrencyException class.
/// </summary>
public ConcurrencyException()
{ }
/// <summary>
/// Initializes a new instance of the ConcurrencyException class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public ConcurrencyException(string message)
: base(message)
{ }
/// <summary>
/// Initializes a new instance of the ConcurrencyException class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
/// <param name="innerException">The message that is the cause of the current exception.</param>
public ConcurrencyException(string message, Exception innerException)
: base(message, innerException)
{ }
}
}