namespace StellaOps.Scanner.Surface.Secrets; public sealed class SurfaceSecretNotFoundException : Exception { public SurfaceSecretNotFoundException(SurfaceSecretRequest request) : base($"Surface secret not found for tenant '{request.Tenant}', component '{request.Component}', type '{request.SecretType}'.") { Request = request; } public SurfaceSecretRequest Request { get; } }