mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-25 15:42:55 +00:00
11 lines
333 B
C#
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))
|
|
{ }
|
|
}
|
|
} |