getErrorCatalog()

Returns the error cataloge (.cat) from the error class from getLastError().

Synopsis

string getErrorCataloge(errClass err | dyn_errClass err);

Parameters

Parameter Description
err Return value from getLastError().The parameter dyn_errClass returns the element of the LAST (!!) error that occurred.

Return value

The function returns the cataloge of the error in question.

Error

If there were no errors.

Description

The value returned from the Control function getLastError() defines an error class that is composed of several attributes. From this, the cataloge can be filtered out.

Example

main()
{
  dyn_errClass err;
  int errCat;
  err = getLastError();
  errCat = getErrorCatalog(err);
  DebugN = (errCat);
}

Assignment

Errors

Availability

CTRL