mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-25 15:42:55 +00:00
36c08248fa
All unused "using" directives were removed.
16 lines
442 B
C#
16 lines
442 B
C#
using System;
|
|
|
|
namespace Octokit.Tests.Conventions
|
|
{
|
|
public class MissingClientConstructorTestMethodException : Exception
|
|
{
|
|
public MissingClientConstructorTestMethodException(Type modelType)
|
|
: base(CreateMessage(modelType))
|
|
{ }
|
|
|
|
static string CreateMessage(Type ctorTest)
|
|
{
|
|
return string.Format("Constructor test method is missing {0}.", ctorTest.FullName);
|
|
}
|
|
}
|
|
} |