mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-01 20:42:51 +08:00
13 lines
255 B
C#
13 lines
255 B
C#
namespace Ocelot.Provider.Consul
|
|
{
|
|
using Errors;
|
|
|
|
public class UnableToSetConfigInConsulError : Error
|
|
{
|
|
public UnableToSetConfigInConsulError(string s)
|
|
: base(s, OcelotErrorCode.UnknownError)
|
|
{
|
|
}
|
|
}
|
|
}
|