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