dotnet-installer/old/build_projects/shared-build-targets-utils/BuildFailureException.cs
2018-10-21 20:47:58 -07:00

22 lines
578 B
C#

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
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)
{
}
}
}