ln.http/exceptions/IllegalRequestException.cs

12 lines
189 B
C#
Raw Normal View History

2019-02-14 09:14:50 +01:00
using System;
namespace ln.http.exceptions
{
public class IllegalRequestException : Exception
{
public IllegalRequestException(String requestLine)
:base(requestLine)
{
}
}
}