File: RemoteExecutionTimeoutException.cs
Web Access
Project: src\src\Microsoft.DotNet.RemoteExecutor\src\Microsoft.DotNet.RemoteExecutor.csproj (Microsoft.DotNet.RemoteExecutor)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
 
namespace Microsoft.DotNet.RemoteExecutor;
 
public sealed class RemoteExecutionTimeoutException : Exception
{
    public RemoteExecutionTimeoutException(string message)
        : base(message)
    {
    }
}