File: RemoteExecutionException.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.
 
#nullable enable
 
using System;
 
namespace Microsoft.DotNet.RemoteExecutor
{
    /// <summary>
    /// Exception thrown for a remote execution failure.
    /// </summary>
    public sealed class RemoteExecutionException : Exception
    {
        private readonly string? _stackTrace;
        public RemoteExecutionException(string message, string? stackTrace = null)
            : base(message)
        {
            _stackTrace = stackTrace;
        }
 
        public override string? StackTrace => _stackTrace ?? base.StackTrace;
    }
}