13 lines
380 B
C#
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; }
|
|
}
|
|
} |