1
0
mirror of https://github.com/chylex/Query.git synced 2025-07-26 06:59:07 +02:00
Query/Calculator/Parser/ParseException.cs

6 lines
114 B
C#

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