Files
octokit.net/Octokit.Tests.Conventions/Exception/MissingDebuggerDisplayPropertyException.cs
2015-11-04 13:38:51 -08:00

11 lines
333 B
C#

using System;
namespace Octokit.Tests.Conventions
{
public class MissingDebuggerDisplayPropertyException : Exception
{
public MissingDebuggerDisplayPropertyException(Type modelType)
: base(string.Format("Model type '{0}' is missing the DebuggerDisplay property.", modelType.FullName))
{ }
}
}