aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/SecurityException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Net/SecurityException.cs')
-rw-r--r--MediaBrowser.Controller/Net/SecurityException.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Net/SecurityException.cs b/MediaBrowser.Controller/Net/SecurityException.cs
index a5b94ea5e..c6347133a 100644
--- a/MediaBrowser.Controller/Net/SecurityException.cs
+++ b/MediaBrowser.Controller/Net/SecurityException.cs
@@ -1,3 +1,5 @@
+#nullable enable
+
using System;
namespace MediaBrowser.Controller.Net
@@ -27,7 +29,7 @@ namespace MediaBrowser.Controller.Net
/// <summary>
/// Initializes a new instance of the <see cref="SecurityException"/> class.
/// </summary>
- /// <param name="message">The message that describes the error</param>
+ /// <param name="message">The message that describes the error.</param>
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
public SecurityException(string message, Exception innerException)
: base(message, innerException)