Files
Ocelot/src/Ocelot/Infrastructure/CouldNotFindPlaceholderError.cs
Tom Pallister b51df71d7b #280 Add headers to response (#286)
* #280 can now add response headers inc trace id, now need to consolidate the header place holder stuff

* #280 changed port for linux tests

* #280 lots of hacking around to handle errors and consolidate placeholders into one class
2018-03-18 14:58:39 +00:00

12 lines
333 B
C#

using Ocelot.Errors;
namespace Ocelot.Infrastructure
{
public class CouldNotFindPlaceholderError : Error
{
public CouldNotFindPlaceholderError(string placeholder)
: base($"Unable to find placeholder called {placeholder}", OcelotErrorCode.CouldNotFindPlaceholderError)
{
}
}
}