1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Net;
- namespace OSHttpServer.Exceptions
- {
- /// <summary>
- /// The requested resource was not found in the web server.
- /// </summary>
- public class NotFoundException : HttpException
- {
- /// <summary>
- /// Create a new exception
- /// </summary>
- /// <param name="message">message describing the error</param>
- /// <param name="inner">inner exception</param>
- public NotFoundException(string message, Exception inner) : base(HttpStatusCode.NotFound, message, inner)
- {
- }
- /// <summary>
- /// Create a new exception
- /// </summary>
- /// <param name="message">message describing the error</param>
- public NotFoundException(string message)
- : base(HttpStatusCode.NotFound, message)
- {
- }
- }
- }
|