using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShintenScript { public class ParsingException : Exception { public ParsingException(string message) : base(message) { } } }