mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 20:13:40 +00:00
aaaand format the code
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user