mirror of
https://github.com/chylex/Query.git
synced 2025-05-15 23:34:04 +02:00
9 lines
250 B
C#
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) {}
|
|
}
|