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; } } }