22 | Remove Err=4091 from GetDocumentByUNID methodGeneration of this error is useless, it only hinders. Quite enough to return Nothing.
Similar GetDocumentByID method does not generate errors. |
21 | LotusScript: Generic 'core dump' error handlerMark Demicoli10169 - 12 2009 / (5) On error, produce a 'core dump' of all defined variables, objects, and a call trace. The 'core dump' might provide a limited (one-level) listing of defined objects with their property values, and all local and global variable values. Going down more than one level might end up with a ... |
10 | Remove Err=4411 from NotesUIDocument.Save methodGeneration of this error is useless, it also hinders. All error handling should be done in the proper place - on QuerySave.
I propose that the Save method returns the result as Boolean, it's would be very convenient and usefull. |
6 | Improve errorhandling in LotusScript with a Try..Catch..Finally blockKenneth Axi1679 - 04 2011 / (4) I would like to see an improvement of LotusScript errorhandling and therefore introduce the Try..Catch..Finally block that You do in Java and other OOP languages.
That would give us the option to get rid of the hideous On Error Goto statements and have proper errorhandling as it should be. |
5 | Remove Err=4469 from NotesDocumentCollection.AddDocument methodI propose that it's method returns the result as Boolean, is quite enough. It is better add to Desinner Help describe the situations where the method may return False, and this:
Generating the error ... |
2 | Saving shared actions should run error processingOndrej Kostruh1103 - 06 2008 / (5) Saving shared actions (with LS) should run compiler a do all error processing analogous to agents, script libraries, etc. |
2 | Incomprehensible restriction (Err=4418) on QueryOpenThis restriction exists for the following methods NotesUIWorkspace class: PickListCollection, PickListStrings, Prompt, URLOpen, EditDocument, SaveFileDialog, OpenFileDialog. Its meaning is not clear, because DialogBox allowed, and he calmly executed?!! I propose to remove this restriction, without him it will be very convenient to choose something, but, for example, if you cancel ... |
-10 | error messages from the http engine should have some configuration facilityAxel Janssen4993 - 07 2008 / (2) The following scenario: 1. A web-form makes ajax calls against a domino agent. 2. User starts to work on a document on his web client. 3. User plays WII tennis match with his collegue. 4. User returns to his document and presses an ajax enabled button. Unfortunatedly in the meantime ... |
-27 | Allow us to write in one place "On Error Goto..." for all LotusScriptFedor Belov851 - 04 2007 / (7) Why do I need to write
"On Error Goto ErrorLab
...
Exit Function ErrorLab: Call CommonError Exit Function End Function" in each function/sub? Let me to write this code in one place and extend it to all LotusScript errors at any Function/Sub |