mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 13:52:51 +08:00
13 lines
404 B
C#
13 lines
404 B
C#
using Ocelot.Errors;
|
|
|
|
namespace Ocelot.DownstreamRouteFinder.Finder
|
|
{
|
|
public class UnableToFindDownstreamRouteError : Error
|
|
{
|
|
public UnableToFindDownstreamRouteError(string path, string httpVerb)
|
|
: base($"Failed to match ReRoute configuration for upstream path: {path}, verb: {httpVerb}.", OcelotErrorCode.UnableToFindDownstreamRouteError, 404)
|
|
{
|
|
}
|
|
}
|
|
}
|