using System; namespace NTERA.Engine.Compiler { public class ParserException : Exception { public ParserException(string message) : base(message) { } public ParserException(string message, Marker marker) : base($"{message} (at {marker})") { } } }