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