ln.http/ln.http/exceptions/PayLoadTooLargeException.cs

12 lines
228 B
C#

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