SupaLidlGame/Exceptions/InterpreterException.cs

14 lines
289 B
C#
Raw Permalink Normal View History

2023-09-24 18:51:23 -07:00
namespace SupaLidlGame;
public class InterpreterException : System.Exception
{
public int Line { get; set; }
public int Column { get; set; }
public InterpreterException(string msg, int line, int column) : base(msg)
{
Line = line;
Column = column;
}
}