Auth and error handling components

This commit is contained in:
2024-09-01 19:30:28 +03:00
parent 65876be551
commit 1f050a6fd4
9 changed files with 174 additions and 60 deletions

View File

@@ -0,0 +1,7 @@
using BlazorWebAssemblyVisaApiClient.Common;
using VisaApiClient;
namespace BlazorWebAssemblyVisaApiClient.Components.Auth.Exceptions
{
public class NotLoggedInException() : BlazorClientException("User is not logged in");
}