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

17 lines
475 B
C#
Raw Normal View History

2023-02-22 14:03:35 +01: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 blocked. Lock reports that obstacle is still blocking.
/// </summary>
public class CouldntOpenBoldIsBlockedException : StateAwareException
{
public CouldntOpenBoldIsBlockedException() : base(
LockingState.UnknownFromHardwareError,
2023-02-22 14:03:35 +01:00
MultilingualResources.Resources.ErrorOpenLockBoldIsBlocked)
2022-09-06 16:08:19 +02:00
{
}
}
2021-06-26 20:57:55 +02:00
}