2016-07-19 21:01:02 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|