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