ln.http/exceptions/IllegalRequestException.cs

12 lines
189 B
C#

using System;
namespace ln.http.exceptions
{
public class IllegalRequestException : Exception
{
public IllegalRequestException(String requestLine)
:base(requestLine)
{
}
}
}