| File: tests\Shared\TemplatesTesting\ToolCommandException.cs | Web Access |
| Project: src\tests\Aspire.Acquisition.Tests\Aspire.Acquisition.Tests.csproj (Aspire.Acquisition.Tests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Aspire.Templates.Tests; public class ToolCommandException(string message, CommandResult? result) : Exception(message) { public CommandResult? Result { get; } = result; }