File: XUnit\SkipTestException.cs
Web Access
Project: src\test\TestUtilities\TestUtilities.csproj (Microsoft.TestUtilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
// Borrowed from https://github.com/dotnet/aspnetcore/blob/95ed45c67/src/Testing/src/xunit/
 
using System;
 
namespace Microsoft.TestUtilities;
 
public class SkipTestException : Exception
{
    public SkipTestException(string reason)
        : base(reason)
    {
    }
}