mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 23:02:50 +08:00
12 lines
311 B
C#
12 lines
311 B
C#
using Ocelot.Library.Infrastructure.Responses;
|
|
|
|
namespace Ocelot.Library.Infrastructure.UrlTemplateRepository
|
|
{
|
|
public class DownstreamUrlTemplateAlreadyExists : Error
|
|
{
|
|
public DownstreamUrlTemplateAlreadyExists()
|
|
: base("This key has already been used")
|
|
{
|
|
}
|
|
}
|
|
} |