You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copyright (c) navtech.io. All rights reserved.
2
+
// See License in the project root for license information.
3
+
4
+
usingSystem;
5
+
6
+
namespaceSimpleflow.Exceptions
7
+
{
8
+
/// <summary>
9
+
/// Represents base exception for all Simpleflow exceptions
10
+
/// </summary>
11
+
publicclassArgumentImmutableExeception:Exception
12
+
{
13
+
/// <summary>
14
+
/// Initializes a new instance of the <see cref="SimpleflowException"/> class with
15
+
/// a specified variable name.
16
+
/// </summary>
17
+
/// <param name="message">The message that describes the error.</param>
18
+
publicArgumentImmutableExeception():base($"Script argument cannot be mutable in this context. Set {nameof(FlowOptions.AllowArgumentToMutate)} options to true in order to modify argument")
0 commit comments