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