ln.http/ln.http/exceptions/NotFoundException.cs

12 lines
212 B
C#

using System;
namespace ln.http.exceptions
{
public class NotFoundException : HttpException
{
public NotFoundException()
: base(HttpStatusCode.NotFound)
{
}
}
}