Version 3.0.365

This commit is contained in:
Anja 2023-05-11 17:39:28 +02:00
parent 0b9196a78d
commit 0eb7362cb8
64 changed files with 1423 additions and 1045 deletions

View file

@ -42,17 +42,17 @@ namespace TINK.Model.Connector
{
if (string.IsNullOrEmpty(mail))
{
throw new ArgumentNullException("Can not loging user. Mail address must not be null or empty.");
throw new ArgumentNullException("Can not login user. Mail address must not be null or empty.");
}
if (string.IsNullOrEmpty(password))
{
throw new ArgumentNullException("Can not loging user. Password must not be null or empty.");
throw new ArgumentNullException("Can not login user. Password must not be null or empty.");
}
if (string.IsNullOrEmpty(deviceId))
{
throw new ArgumentNullException("Can not loging user. Device not be null or empty.");
throw new ArgumentNullException("Can not login user. Device not be null or empty.");
}
AuthorizationResponse response;
@ -103,7 +103,7 @@ namespace TINK.Model.Connector
/// <param name="bike">Bike to book.</param>
public async Task CalculateAuthKeys(Bikes.BikeInfoNS.BluetoothLock.IBikeInfoMutable bike)
{
Log.ForContext<Command>().Error("Unexpected request to get authenticatin keys detected. No user logged in.");
Log.ForContext<Command>().Error("Unexpected request to get authentication keys detected. No user logged in.");
await Task.CompletedTask;
}

View file

@ -41,7 +41,7 @@ namespace TINK.Model.Connector
{
if (string.IsNullOrEmpty(mail))
{
throw new ArgumentNullException("Can not loging user. Mail address must not be null or empty.");
throw new ArgumentNullException("Can not login user. Mail address must not be null or empty.");
}
throw new Exception($"Fehler beim Anmelden von unter {mail}. Benutzer {Mail} ist bereits angemeldet.");
@ -90,7 +90,7 @@ namespace TINK.Model.Connector
}
catch (Exception)
{
// Exception was not expected or too many subsequent excepitons detected.
// Exception was not expected or too many subsequent exceptions detected.
throw;
}
@ -114,7 +114,7 @@ namespace TINK.Model.Connector
}
catch (Exception)
{
// Exception was not expected or too many subsequent excepitons detected.
// Exception was not expected or too many subsequent exceptions detected.
throw;
}
@ -148,7 +148,7 @@ namespace TINK.Model.Connector
}
catch (Exception)
{
// Exception was not expected or too many subsequent excepitons detected.
// Exception was not expected or too many subsequent exceptions detected.
throw;
}
@ -178,7 +178,7 @@ namespace TINK.Model.Connector
}
catch (Exception)
{
// Exception was not expected or too many subsequent excepitons detected.
// Exception was not expected or too many subsequent exceptions detected.
throw;
}
@ -231,7 +231,7 @@ namespace TINK.Model.Connector
}
catch (Exception)
{
// Exception was not expected or too many subsequent excepitons detected.
// Exception was not expected or too many subsequent exceptions detected.
throw;
}
}