Standardized IncisorĀ® communications protocol object that is returned from methods that incorporate external functionality.
This serves is a 'wrapper' object to the desired return value. This object contains a 'payload' member and an 'error' member.
If no issues are encountered during the external portion of the functionality, the desired return value can be found in the 'payload' member, otherwise
the 'error' member will contain applicable information about the encountered issues.
For example, if nc.fileIO.readTextFile('MyDrive/SomeDirectory/myFile.txt') is successful, then the returned text from the file will be in the 'payload' member
of the returned IncrCommsResponseObject object, but if nc.fileIO.readTextFile('MyDrive/SomeDirectoryWithRestrictedAccess/myFile.txt') is unsuccessful,
then the 'error' member of the returned IncrCommsResponseObject object may be something 'Could not read file in restricted directory...'.
[NON-INSTANTIABLE]