Skip to content

Commit

Permalink
Fix NoLambdaException message (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
tymarats authored Oct 24, 2024
1 parent c355bcb commit 4236330
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ConductorSharp.Patterns/Exceptions/NoLambdaException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

namespace ConductorSharp.Patterns.Exceptions
{
public class NoLambdaException(string lambdaName) : Exception($"ConductorSharp: Lambda with corresponding identifier\"{lambdaName}\" ") { }
public class NoLambdaException(string lambdaName)
: Exception($"ConductorSharp: Lambda with corresponding identifier \"{lambdaName}\" not found.") { }
}

0 comments on commit 4236330

Please sign in to comment.