Logify/Error/Error.mqh

17 lines
550 B
MQL5
Raw Permalink Normal View History

2025-08-21 11:59:58 -03:00
//+------------------------------------------------------------------+
//| Data structure for error handling |
//+------------------------------------------------------------------+
struct MqlError
{
int code; // Cod of error
string description; // Description of error
string constant; // Type error
MqlError::MqlError(void)
{
code = 0;
description = "";
constant = "";
}
};
//+------------------------------------------------------------------+