mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-19 10:58:15 +08:00
12 lines
265 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |