mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-08 00:17:49 +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; }
|
|
}
|
|
} |