Files
Ocelot/src/Ocelot.ApiGateway/Infrastructure/Router/RouteKeyAlreadyExists.cs
2016-07-02 16:09:54 +01:00

12 lines
265 B
C#

using Ocelot.ApiGateway.Infrastructure.Responses;
namespace Ocelot.ApiGateway.Infrastructure.Router
{
public class RouteKeyAlreadyExists : Error
{
public RouteKeyAlreadyExists(string message)
: base(message)
{
}
}
}