-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathStreamNotFoundException.cs
More file actions
31 lines (29 loc) · 1.13 KB
/
Copy pathStreamNotFoundException.cs
File metadata and controls
31 lines (29 loc) · 1.13 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 attempt to retrieve a nonexistent event stream.
/// </summary>
public class StreamNotFoundException : Exception
{
/// <summary>
/// Initializes a new instance of the StreamNotFoundException class.
/// </summary>
public StreamNotFoundException()
{}
/// <summary>
/// Initializes a new instance of the StreamNotFoundException class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public StreamNotFoundException(string message)
: base(message)
{}
/// <summary>
/// Initializes a new instance of the StreamNotFoundException 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 StreamNotFoundException(string message, Exception innerException)
: base(message, innerException)
{}
}
}