mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 21:12:51 +08:00
12 lines
285 B
C#
12 lines
285 B
C#
using Ocelot.Library.Infrastructure.Responses;
|
|
|
|
namespace Ocelot.Library.Infrastructure.Router.UpstreamRouter
|
|
{
|
|
public class RouteKeyAlreadyExists : Error
|
|
{
|
|
public RouteKeyAlreadyExists()
|
|
: base("This key has already been used")
|
|
{
|
|
}
|
|
}
|
|
} |