Jump to content

Recommended Posts

Posted

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???

 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...