Some renaming

This commit is contained in:
aedampir@gmail.com
2016-04-06 14:42:20 +07:00
parent dfb636c393
commit 6140bc678b
3 changed files with 4 additions and 4 deletions
@@ -17,7 +17,7 @@ namespace Octokit.Tests.Conventions
if (!classes.Contains(constructorClassName))
{
throw new MissingConstructorTestClassException(type);
throw new MissingClientConstructorTestClassException(type);
}
}
@@ -2,9 +2,9 @@
namespace Octokit.Tests.Conventions
{
public class MissingConstructorTestClassException : Exception
public class MissingClientConstructorTestClassException : Exception
{
public MissingConstructorTestClassException(Type modelType)
public MissingClientConstructorTestClassException(Type modelType)
: base(CreateMessage(modelType))
{ }
@@ -64,7 +64,7 @@
<ItemGroup>
<Compile Include="Exception\InvalidDebuggerDisplayAttributeValueException.cs" />
<Compile Include="Exception\InvalidDebuggerDisplayReturnType.cs" />
<Compile Include="Exception\MissingConstructorTestClassException.cs" />
<Compile Include="Exception\MissingClientConstructorTestClassException.cs" />
<Compile Include="Exception\MissingDebuggerDisplayAttributeException.cs" />
<Compile Include="Exception\MissingDebuggerDisplayPropertyException.cs" />
<Compile Include="Exception\MutableModelPropertiesException.cs" />