mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-26 11:42:50 +08:00
14 lines
324 B
C#
14 lines
324 B
C#
namespace Ocelot.Provider.Polly
|
|
{
|
|
using Errors;
|
|
using System;
|
|
|
|
public class RequestTimedOutError : Error
|
|
{
|
|
public RequestTimedOutError(Exception exception)
|
|
: base($"Timeout making http request, exception: {exception}", OcelotErrorCode.RequestTimedOutError)
|
|
{
|
|
}
|
|
}
|
|
}
|