Ocelot/src/Ocelot/Infrastructure/CannotAddPlaceholderError.cs

13 lines
274 B
C#

using Ocelot.Errors;
namespace Ocelot.Infrastructure
{
public class CannotAddPlaceholderError : Error
{
public CannotAddPlaceholderError(string message)
: base(message, OcelotErrorCode.CannotAddPlaceholderError, 404)
{
}
}
}