1
0
mirror of https://github.com/chylex/Query.git synced 2024-10-16 07:42:46 +02:00
Query/Calculator/Parser/ParseException.cs

6 lines
114 B
C#

using System;
namespace Calculator.Parser;
sealed class ParseException(string message) : Exception(message);