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