namespace AVEVA.Historian.Client; public sealed class ProtocolEvidenceMissingException : NotSupportedException { public ProtocolEvidenceMissingException(string operation) : base($"Protocol evidence for '{operation}' has not been captured yet. Add sanitized fixtures before enabling this operation.") { Operation = operation; } public string Operation { get; } }