MParser/Parser/ParsingException.cs

9 lines
157 B
C#

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