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