mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-01 20:42:51 +08:00
14 lines
358 B
C#
14 lines
358 B
C#
namespace Ocelot.Library.Requester
|
|
{
|
|
using System;
|
|
using Errors;
|
|
|
|
public class UnableToCompleteRequestError : Error
|
|
{
|
|
public UnableToCompleteRequestError(Exception exception)
|
|
: base($"Error making http request, exception: {exception.Message}", OcelotErrorCode.UnableToCompleteRequestError)
|
|
{
|
|
}
|
|
}
|
|
}
|