| File: src\vstest\src\testhost.x86\DebugAssertException.cs | Web Access |
| Project: src\vstest\src\testhost.arm64\testhost.arm64.csproj (testhost.arm64) |
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; namespace Microsoft.VisualStudio.TestPlatform.TestHost; internal sealed class DebugAssertException : Exception { public DebugAssertException(string? message, string? stackTrace) : base(message) { StackTrace = stackTrace; } public override string? StackTrace { get; } } |