sharee.bike-App/LockIt.BusinessLogic/Services/BluetoothLock/Exception/CouldntOpenBoldIsBlockedException.cs

17 lines
495 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.Model.Bikes.BikeInfoNS.BluetoothLock;
2021-06-26 20:57:55 +02:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Services.BluetoothLock.Exception
2021-06-26 20:57:55 +02:00
{
2022-09-06 16:08:19 +02:00
/// <summary>
/// Lock can not be opened, because bold is blocked. Lock reports that obstacle is still blocking.
/// </summary>
public class CouldntOpenBoldIsBlockedException : StateAwareException
{
public CouldntOpenBoldIsBlockedException() : base(
LockingState.UnknownFromHardwareError,
2023-08-31 12:20:06 +02:00
MultilingualResources.Resources.LockItExceptionOpenLockBoltBlocked)
2022-09-06 16:08:19 +02:00
{
}
}
2021-06-26 20:57:55 +02:00
}