mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
7 lines
211 B
C#
7 lines
211 B
C#
namespace MtApi
|
|
{
|
|
public class MtExecutionException(MtErrorCode errorCode, string? message) : Exception(message)
|
|
{
|
|
public MtErrorCode ErrorCode { get; private set; } = errorCode;
|
|
}
|
|
} |