summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Services/ExceptionHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.lib/Services/ExceptionHandler.cs')
-rw-r--r--src/main.lib/Services/ExceptionHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.lib/Services/ExceptionHandler.cs b/src/main.lib/Services/ExceptionHandler.cs
index 2d8063e..6b41177 100644
--- a/src/main.lib/Services/ExceptionHandler.cs
+++ b/src/main.lib/Services/ExceptionHandler.cs
@@ -15,7 +15,7 @@ namespace PKISharp.WACS.Services
/// Handle exceptions by logging them and setting negative exit code
/// </summary>
/// <param name="innerex"></param>
- public string HandleException(Exception original = null, string message = null)
+ public string? HandleException(Exception? original = null, string? message = null)
{
var outMessage = message;
var exceptionStack = new List<Exception>();