string getErrorString() /enmlFile

Returns the parsing error message.

const string str = GetStringFromFile("sample.enml");

enmlFile f;
if (f.parseString(str) == 0)
{
print(f.getErrorString());
}