dotnet-installer/build_projects/Microsoft.DotNet.Cli.Build.Framework/UndefinedTargetException.cs
2016-05-16 14:55:15 -05:00

9 lines
No EOL
209 B
C#

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