EGL Java™ runtime error code VGJ0006E

VGJ0006E: An error occurred during an I/O operation. %1

Explanation

An I/O operation failed, and the EGL statement has no try statement to deal with the error.

User Response

If you want the program to handle the error, set handleHardIOErrors to 1 and put the I/O statement in a try statement, as in the following example:
  VGVar.handleHardIOErrors  = 1;

  if (userRequest == "A")
    try
      add record1
    onException
      myErrorHandler(12);
    end
  end
Feedback
(C) Copyright IBM Corporation 2000, 2005. All Rights Reserved.