9 lines
No EOL
209 B
C#
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) { }
|
|
}
|
|
} |