mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +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))
|
|
{ }
|
|
}
|
|
} |