dotnet-installer/build_projects/shared-build-targets-utils/BuildFailureException.cs
2017-03-02 21:04:03 -08: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)
{
}
}
}