// =================================================================== // ERROR/WARNING MANAGEMENT UTILITIES // ------------------------------------------------------------------- /// Register a code generation error message. /// /// @param message The error string message to be displayed. /// @param objectId The identifier of the visual script object in error. /// public void AddError(string message, int objectId) { ErrorController.AddError(myServiceKey, message, myVisualScript, objectId); }