Files
duplicati/Duplicati/CommandLine/ServerUtil/UserReportedException.cs
T
Kenneth Skovhede 735b4020eb Implemented duplicati-server-util for sending various commands to a running server.
This tool replaces `ConfigurationImporter` and partially replaces `duplicati_client`.
This fixes #5474
2024-08-26 20:00:13 +02:00

10 lines
390 B
C#

namespace Duplicati.CommandLine.ServerUtil;
/// <summary>
/// An exception that should be reported to the user.
/// </summary>
/// <param name="message">The message of the exception</param>
/// <param name="innerException">The inner exception</param>
[Serializable]
public class UserReportedException(string message, Exception? innerException = null) : Exception(message, innerException);