mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-31 20:47:51 +00:00
13 lines
306 B
C#
Executable File
13 lines
306 B
C#
Executable File
namespace MtApi5
|
|
{
|
|
public class ExecutionException: Exception
|
|
{
|
|
public ExecutionException(ErrorCode errorCode, string? message)
|
|
:base(message)
|
|
{
|
|
ErrorCode = errorCode;
|
|
}
|
|
|
|
public ErrorCode ErrorCode { get; private set; }
|
|
}
|
|
} |