sharee.bike-App/LockIt.BusinessLogic/Services/BluetoothLock/Exception/CouldntOpenBoldIsBlockedException.cs
2024-04-09 12:53:23 +02:00

17 lines
495 B
C#

using ShareeBike.Model.Bikes.BikeInfoNS.BluetoothLock;
namespace ShareeBike.Services.BluetoothLock.Exception
{
/// <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,
MultilingualResources.Resources.LockItExceptionOpenLockBoltBlocked)
{
}
}
}