mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-30 07:12:51 +08:00
13 lines
274 B
C#
13 lines
274 B
C#
using Ocelot.Errors;
|
|
|
|
namespace Ocelot.Infrastructure
|
|
{
|
|
public class CannotAddPlaceholderError : Error
|
|
{
|
|
public CannotAddPlaceholderError(string message)
|
|
: base(message, OcelotErrorCode.CannotAddPlaceholderError, 404)
|
|
{
|
|
}
|
|
}
|
|
}
|