Use base type for argument

This commit is contained in:
Haacked
2015-08-04 21:18:39 -07:00
parent 0b13411ef5
commit 8a7e5efa81
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ namespace Octokit
/// Constructs an instance of ApiValidationException
/// </summary>
/// <param name="innerException">The inner exception</param>
protected ApiValidationException(ApiValidationException innerException)
protected ApiValidationException(ApiException innerException)
: base(innerException)
{
}