Skip to content

Commit 883e85e

Browse files
committed
Fix invalid message in Agent Config Exception
1 parent fb0a66e commit 883e85e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MaIN.Domain/Exceptions/Agents/AgentConfigNotFoundException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace MaIN.Domain.Exceptions.Agents;
44

5-
public class AgentConfigNotFoundException(string agentId) : MaINCustomException($"Context of agent with id: '{agentId}' not found.")
5+
public class AgentConfigNotFoundException(string agentId) : MaINCustomException($"Config of the agent with id: '{agentId}' not found.")
66
{
7-
public override string PublicErrorMessage => "Agent context not found.";
7+
public override string PublicErrorMessage => "Agent config not found.";
88
public override HttpStatusCode HttpStatusCode => HttpStatusCode.NotFound;
9-
}
9+
}

0 commit comments

Comments
 (0)