File: DebugAssertException.cs
Web Access
Project: src\src\vstest\src\testhost.x86\testhost.x86.csproj (testhost.x86)
// 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; }
}