using System; namespace NewLanguage { public class ParseFailedException : Exception { public readonly SourceLocation At; public ParseFailedException(SourceLocation at, string msg) : base(msg) { At = at; } } }