Hermod
A cross-platform, modular and fully GDPR-compliant email archival solution!
Loading...
Searching...
No Matches
CommandExecutionException.cs
Go to the documentation of this file.
1using System;
2
4
8 public class CommandExecutionException: Exception {
9
15 public CommandExecutionException(string command, string? msg): base(msg) {
16 Command = command;
17 }
18
22 public string Command { get; }
23 }
24}
25
Exception class that may be thrown when an error occurs during command execution.
CommandExecutionException(string command, string? msg)
Constructs a new instance of this class.