This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/build_projects/shared-build-targets-utils/BuildFailureException.cs
2017-03-02 20:35:20 -08:00

19 lines
403 B
C#

using System;
namespace Microsoft.DotNet.Cli.Build
{
public class BuildFailureException : Exception
{
public BuildFailureException()
{
}
public BuildFailureException(string message) : base(message)
{
}
public BuildFailureException(string message, Exception innerException) : base(message, innerException)
{
}
}
}