Category: error handling

  • MAUI Error Handling

    Error handling is one of the most important tasks during building a stable .NET MAUI application. It allows proper error handling to let your app go from unexpected hitch-ups and provide a nice user experience. In .NET MAUI, you can handle errors in the following ways: ViewModel Level Error Handling I have covered this topic…

  • Extending BaseViewModel for Error Handling

    If you are following MVVM, having the exception handled in the ViewModels helps you avoid losing control without your application crashing at random times. The logic for error handling can be extended into BaseViewModel.