mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
Some renaming
This commit is contained in:
@@ -17,7 +17,7 @@ namespace Octokit.Tests.Conventions
|
||||
|
||||
if (!classes.Contains(constructorClassName))
|
||||
{
|
||||
throw new MissingConstructorTestClassException(type);
|
||||
throw new MissingClientConstructorTestClassException(type);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user