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

17 lines
476 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 blocked. Lock reports that obstacle is still blocking.
/// </summary>
public class CouldntOpenBoldIsBlockedException : StateAwareException
{
public CouldntOpenBoldIsBlockedException() : base(
LockingState.UnknownFromHardwareError,
MultilingualResources.Resources.ErrorOpenLockBoldBlocked)
{
}
}
2021-06-26 20:57:55 +02:00
}