mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 21:12:51 +08:00
12 lines
312 B
C#
12 lines
312 B
C#
using Ocelot.Library.Errors;
|
|
|
|
namespace Ocelot.Library.Configuration.Validator
|
|
{
|
|
public class DownstreamTemplateAlreadyUsedError : Error
|
|
{
|
|
public DownstreamTemplateAlreadyUsedError(string message) : base(message, OcelotErrorCode.DownstreamTemplateAlreadyUsedError)
|
|
{
|
|
}
|
|
}
|
|
}
|