-
Notifications
You must be signed in to change notification settings - Fork 927
/
Copy pathReactRouterException.cs
50 lines (46 loc) · 1.63 KB
/
ReactRouterException.cs
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
48
49
50
/*
* Copyright (c) 2014-Present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
using System;
using System.Runtime.Serialization;
namespace React.Router
{
/// <summary>
/// React Router Exception
/// </summary>
#if LEGACYASPNET
[Serializable]
#endif
public class ReactRouterException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="ReactRouterException "/> class.
/// </summary>
public ReactRouterException() : base() { }
/// <summary>
/// Initializes a new instance of the <see cref="ReactRouterException "/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public ReactRouterException(string message) : base(message) { }
/// <summary>
/// Initializes a new instance of the <see cref="ReactRouterException "/> class.
/// </summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
public ReactRouterException(string message, Exception innerException)
: base(message, innerException) { }
#if LEGACYASPNET
/// <summary>
/// Used by deserialization
/// </summary>
protected ReactRouterException(SerializationInfo info, StreamingContext context)
: base(info, context)
{ }
#endif
}
}