1
0
mirror of https://github.com/chylex/Query.git synced 2025-08-16 23:31:42 +02:00
Files
AppCalc
AppConv
AppMeme
AppWindows
Base
Utils
Base.csproj
Command.cs
CommandEventArgs.cs
CommandException.cs
IApp.cs
MatchConfidence.cs
Query
.gitignore
Directory.Build.props
Query.sln
icon.ico
Query/Base/CommandException.cs
2024-08-05 20:42:15 +02:00

9 lines
250 B
C#

using System;
namespace Base;
public sealed class CommandException : Exception {
public CommandException(string message) : base(message) {}
public CommandException(string message, Exception innerException) : base(message, innerException) {}
}