Files
bluflame/intromat/Intromat/Model/Compiler/Error/VariableOutOfScopeException.cs
2026-04-18 22:31:51 +02:00

13 lines
380 B
C#

namespace Intromat.Model.Compiler.Error
{
public class VariableOutOfScopeException : CompilerException
{
public VariableOutOfScopeException(string variableName)
: base($"The variable '{variableName}' was referenced outside its scope.")
{
VariableName = variableName;
}
public string VariableName { get; }
}
}