From 1040acbf7b8a4ca950610cd0cacf04a1f691ee27 Mon Sep 17 00:00:00 2001 From: Guillaume Gnaegi <58469901+ggnaegi@users.noreply.github.com> Date: Sun, 24 Sep 2023 17:33:39 +0200 Subject: [PATCH] commit #1 --- src/Ocelot/Errors/Error.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ocelot/Errors/Error.cs b/src/Ocelot/Errors/Error.cs index dc5c0ce55..1dec51b9c 100644 --- a/src/Ocelot/Errors/Error.cs +++ b/src/Ocelot/Errors/Error.cs @@ -7,8 +7,9 @@ protected Error(string message, OcelotErrorCode code, int httpStatusCode) HttpStatusCode = httpStatusCode; Message = message; Code = code; - } + } + // stupid comment public string Message { get; } public OcelotErrorCode Code { get; } public int HttpStatusCode { get; }