using System; namespace StellaOps.Scanner.Surface.Env; public sealed class SurfaceEnvironmentException : Exception { public SurfaceEnvironmentException(string message, string variable) : base(message) { Variable = variable; } public SurfaceEnvironmentException(string message, string variable, Exception innerException) : base(message, innerException) { Variable = variable; } public string Variable { get; } }