We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb0a66e commit 883e85eCopy full SHA for 883e85e
src/MaIN.Domain/Exceptions/Agents/AgentConfigNotFoundException.cs
@@ -2,8 +2,8 @@
2
3
namespace MaIN.Domain.Exceptions.Agents;
4
5
-public class AgentConfigNotFoundException(string agentId) : MaINCustomException($"Context of agent with id: '{agentId}' not found.")
+public class AgentConfigNotFoundException(string agentId) : MaINCustomException($"Config of the agent with id: '{agentId}' not found.")
6
{
7
- public override string PublicErrorMessage => "Agent context not found.";
+ public override string PublicErrorMessage => "Agent config not found.";
8
public override HttpStatusCode HttpStatusCode => HttpStatusCode.NotFound;
9
-}
+}
0 commit comments