2022-08-30 15:42:25 +02:00
|
|
|
|
using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
|
2021-06-26 20:57:55 +02:00
|
|
|
|
|
|
|
|
|
namespace TINK.Services.BluetoothLock.Exception
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Lock can not be opened, because bold is/ was blocked. Obstacle might no more block but lock could not be opened completely to obstacle.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CouldntOpenBoldWasBlockedException : StateAwareException
|
|
|
|
|
{
|
|
|
|
|
public CouldntOpenBoldWasBlockedException() : base(
|
2022-04-10 17:38:34 +02:00
|
|
|
|
LockingState.UnknownFromHardwareError,
|
2021-06-26 20:57:55 +02:00
|
|
|
|
MultilingualResources.Resources.ErrorOpenLockBoldWasBlocked)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|