mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
23 lines
486 B
C#
23 lines
486 B
C#
using System;
|
|
|
|
namespace MtApi
|
|
{
|
|
public class MtConnectionException: Exception
|
|
{
|
|
public MtConnectionException()
|
|
: this(null, null)
|
|
{
|
|
}
|
|
|
|
public MtConnectionException(string message)
|
|
: this(message, null)
|
|
{
|
|
}
|
|
|
|
public MtConnectionException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
|
|
}
|
|
} |