elGringo Posted May 20, 2016 Posted May 20, 2016 Dear all, please share your opinion about Error management in UniGUI... In Delphi we have try except and try finally blocks for managing exceptions like this try DoSomething; except // ErrorManagement end; In JS we have following try { //Do something } catch (err) { // Error management } 1. But how to manage it in UniGUI - with Delphi approach or maybe with JS approach ? I understand that both approaches will work because on the fact we have JS code. 2. Is in UniGUI some special class for Error Management like EFDDBEngineException in FireDAC for example??? Quote
Administrators Farshad Mohajeri Posted May 21, 2016 Administrators Posted May 21, 2016 There is no difference here. You can use try except blocks as you use in Delphi. JS side handling is done on client side and there is no need to handle them in your app. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.