Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / HttpNotFoundResult.cs
1 namespace System.Web.Mvc {
2
3     public class HttpNotFoundResult : HttpStatusCodeResult {
4
5         // HTTP 404 is the status code for Not Found
6         private const int NotFoundCode = 404;
7
8         public HttpNotFoundResult()
9             : this(null) {
10         }
11
12         public HttpNotFoundResult(string statusDescription)
13             : base(NotFoundCode, statusDescription) {
14         }
15     }
16 }