mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
15 lines
322 B
C#
Executable File
15 lines
322 B
C#
Executable File
using System;
|
|
|
|
namespace MtApi5
|
|
{
|
|
public class ExecutionException: Exception
|
|
{
|
|
public ExecutionException(ErrorCode errorCode, string message)
|
|
:base(message)
|
|
{
|
|
ErrorCode = errorCode;
|
|
}
|
|
|
|
public ErrorCode ErrorCode { get; private set; }
|
|
}
|
|
} |