You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now the application can work if all supplied data is valid. But any incorrect data can cause it to crash. We need to handle the exceptions in certain places and inform user when an error occures.
There is no way to tell GUI that requested action has failed. We can throw exceptions and catch them in GUI layer, or we can use FluentResults to return a Result object from AppLayer to GUI with message.
Also, for now there is no way to show dialogs or toasts in the application (especially from MVVM), so this functionality must be implemented too.
The text was updated successfully, but these errors were encountered:
Description
For now the application can work if all supplied data is valid. But any incorrect data can cause it to crash. We need to handle the exceptions in certain places and inform user when an error occures.
There is no way to tell GUI that requested action has failed. We can throw exceptions and catch them in GUI layer, or we can use FluentResults to return a Result object from AppLayer to GUI with message.
Also, for now there is no way to show dialogs or toasts in the application (especially from MVVM), so this functionality must be implemented too.
The text was updated successfully, but these errors were encountered: