Make Response.Body readonly

This commit is contained in:
Haacked
2015-01-01 22:45:51 -08:00
parent d8f50292e3
commit 89e8fdfeaf
9 changed files with 92 additions and 80 deletions
+9
View File
@@ -24,6 +24,15 @@ namespace Octokit
{
}
/// <summary>
/// Constructs an instance of NotFoundException
/// </summary>
/// <param name="message">The exception message</param>
/// <param name="statusCode">The http status code returned by the response</param>
public NotFoundException(string message, HttpStatusCode statusCode) : base(message, statusCode)
{
}
/// <summary>
/// Constructs an instance of NotFoundException
/// </summary>