mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-24 06:02:51 +08:00
16 lines
318 B
C#
16 lines
318 B
C#
using Ocelot.Errors;
|
|
|
|
namespace Ocelot.UnitTests.Responder
|
|
{
|
|
internal class AnyError : Error
|
|
{
|
|
public AnyError() : base("blahh", OcelotErrorCode.UnknownError)
|
|
{
|
|
}
|
|
|
|
public AnyError(OcelotErrorCode errorCode) : base("blah", errorCode)
|
|
{
|
|
}
|
|
}
|
|
}
|