MParser/Lexer/ParsingException.cs
2018-03-31 21:51:53 +02:00

9 lines
156 B
C#

using System;
namespace Lexer
{
public class ParsingException : Exception
{
public ParsingException(string text) : base(text) {}
}
}