mirror of
https://github.com/chylex/Query.git
synced 2025-06-02 10:34:05 +02:00
6 lines
112 B
C#
6 lines
112 B
C#
using System;
|
|
|
|
namespace Calculator;
|
|
|
|
sealed class CalculatorException(string message) : Exception(message);
|