sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntOpenBoldIsBlockedException.cs
2023-08-31 12:20:06 +02:00

17 lines
483 B
C#

using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
namespace TINK.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)
{
}
}
}