mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-12 18:28:07 +00:00
Refactored MtApi4 (MT4) for working with new architecture
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
using System;
|
||||
|
||||
namespace MtApi
|
||||
namespace MtApi
|
||||
{
|
||||
public class MtConnectionException: Exception
|
||||
{
|
||||
@@ -9,12 +7,12 @@ namespace MtApi
|
||||
{
|
||||
}
|
||||
|
||||
public MtConnectionException(string message)
|
||||
public MtConnectionException(string? message)
|
||||
: this(message, null)
|
||||
{
|
||||
}
|
||||
|
||||
public MtConnectionException(string message, Exception exception)
|
||||
public MtConnectionException(string? message, Exception? exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user