mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
15 lines
313 B
C#
15 lines
313 B
C#
using System;
|
|
|
|
namespace MtApi
|
|
{
|
|
public class MtExecutionException: Exception
|
|
{
|
|
public MtExecutionException(int errorCode, string message)
|
|
:base(message)
|
|
{
|
|
ErrorCode = errorCode;
|
|
}
|
|
|
|
public int ErrorCode { get; private set; }
|
|
}
|
|
} |