2017-03-03 05:04:03 +00:00
|
|
|
|
// 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;
|
2016-07-19 21:01:02 +00:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
|
{
|
|
|
|
|
public class BuildFailureException : Exception
|
|
|
|
|
{
|
|
|
|
|
public BuildFailureException()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BuildFailureException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2017-03-03 04:35:20 +00:00
|
|
|
|
|
2016-07-19 21:01:02 +00:00
|
|
|
|
public BuildFailureException(string message, Exception innerException) : base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-03 04:35:20 +00:00
|
|
|
|
}
|