using System; using System.Net; namespace WebDAVSharp.Server.Exceptions { /// /// This exception is thrown when a request tries to access a resource that does not exist. /// Statuscode: 404 Not Found. /// [Serializable] public class WebDavNotFoundException : WebDavException { /// /// Initializes a new instance of the class. /// /// The exception message stating the reason for the exception being thrown. /// The /// that is the cause for this exception; /// or /// null if no inner exception is specified. public WebDavNotFoundException(string message = null, Exception innerException = null) : base(HttpStatusCode.NotFound, message, innerException) { // Do nothing here } } }