forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnhandledErrorException.cs
More file actions
47 lines (43 loc) · 1.48 KB
/
UnhandledErrorException.cs
File metadata and controls
47 lines (43 loc) · 1.48 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MS-PL license.
// See the LICENSE file in the project root for more information.
using System;
namespace ReactiveUI
{
/// <summary>
/// Indicates that an object implementing <see cref="IHandleObservableErrors"/> has errored and nothing is attached
/// to <see cref="IHandleObservableErrors.ThrownExceptions"/> to handle that error.
/// </summary>
public class UnhandledErrorException : Exception
{
/// <summary>
/// Creates a new instance of <c>UnhandledErrorException</c>.
/// </summary>
public UnhandledErrorException()
{
}
/// <summary>
/// Creates a new instance of <c>UnhandledErrorException</c>.
/// </summary>
/// <param name="message">
/// The exception message.
/// </param>
public UnhandledErrorException(string message)
: base(message)
{
}
/// <summary>
/// Creates a new instance of <c>UnhandledErrorException</c>.
/// </summary>
/// <param name="message">
/// The exception message.
/// </param>
/// <param name="innerException">
/// The exception that caused this exception.
/// </param>
public UnhandledErrorException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}