aaaand format the code

This commit is contained in:
Brendan Forster
2015-11-04 13:38:51 -08:00
parent 3305dfcf4f
commit 80719c0033
199 changed files with 442 additions and 438 deletions
@@ -8,18 +8,20 @@ namespace Octokit.Tests.Conventions
public InterfaceNotFoundException() { }
public InterfaceNotFoundException(string type)
: base(CreateMessage(type)) { }
: base(CreateMessage(type))
{ }
public InterfaceNotFoundException(string type, Exception innerException)
: base(CreateMessage(type), innerException) { }
: base(CreateMessage(type), innerException)
{ }
protected InterfaceNotFoundException(SerializationInfo info, StreamingContext context)
: base(info, context) { }
: base(info, context)
{ }
static string CreateMessage(string type)
{
return String.Format("Could not find the interface {0}. Add this to the Octokit.Reactive project", type);
}
}
}