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
@@ -7,13 +7,16 @@ namespace Octokit.Tests.Conventions
public class ParameterMismatchException : Exception
{
public ParameterMismatchException(MethodInfo method, int position, ParameterInfo expected, ParameterInfo actual)
: base(CreateMessage(method, position, expected, actual)) { }
: base(CreateMessage(method, position, expected, actual))
{ }
public ParameterMismatchException(MethodInfo method, int position, ParameterInfo expected, ParameterInfo actual, Exception innerException)
: base(CreateMessage(method, position, expected, actual), innerException) { }
: base(CreateMessage(method, position, expected, actual), innerException)
{ }
protected ParameterMismatchException(SerializationInfo info, StreamingContext context)
: base(info, context) { }
: base(info, context)
{ }
static string CreateParameterSignature(ParameterInfo parameter)
{