mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-27 16:42:03 +00:00
Some renaming
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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 method is missing {0}.", ctorTest.FullName);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user