sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntOpenBoldWasBlockedException.cs

17 lines
522 B
C#
Raw Normal View History

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
{
2022-09-06 16:08:19 +02:00
/// <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(
LockingState.UnknownFromHardwareError,
MultilingualResources.Resources.ErrorOpenLockBoldWasBlocked)
{
}
}
2021-06-26 20:57:55 +02:00
}