mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
2 model classes were missing one - technically not needed for these 2 classes due to their api calls being basic data types that then get populated into these objects, but it's easiest to just add them to these 2 classes so the test can pass on all response models
11 lines
375 B
C#
11 lines
375 B
C#
using System;
|
|
|
|
namespace Octokit.Tests.Conventions
|
|
{
|
|
public class MissingPublicParameterlessCtorException : Exception
|
|
{
|
|
public MissingPublicParameterlessCtorException(Type modelType)
|
|
: base(string.Format("Model type '{0}' is missing a Public Parameterless Constructor required by SimpleJson Deserializer.", modelType.FullName))
|
|
{ }
|
|
}
|
|
} |