9 lines
156 B
C#
9 lines
156 B
C#
using System;
|
|
|
|
namespace Lexer
|
|
{
|
|
public class ParsingException : Exception
|
|
{
|
|
public ParsingException(string text) : base(text) {}
|
|
}
|
|
} |