using System; namespace StellaOps.Cli.Commands; internal sealed class CommandLineException : Exception { public CommandLineException(string message) : base(message) { } }