using System; namespace Octokit.Tests.Conventions { public class MissingClientConstructorTestMethodException : Exception { public MissingClientConstructorTestMethodException(Type modelType) : base(CreateMessage(modelType)) { } static string CreateMessage(Type ctorTest) { return string.Format("Constructor test method is missing {0}.", ctorTest.FullName); } } }