namespace Recordingtest.Hmeg.Bridge.Client; public sealed class EngineBridgeException : Exception { public string Endpoint { get; } public EngineBridgeException(string endpoint, string message, Exception? inner = null) : base($"engine-bridge {endpoint}: {message}", inner) { Endpoint = endpoint; } }