Logify/Error/Error.mqh
2025-08-21 11:59:58 -03:00

17 lines
No EOL
550 B
MQL5

//+------------------------------------------------------------------+
//| 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 = "";
}
};
//+------------------------------------------------------------------+