sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntCloseBoldBlockedException.cs
2022-04-10 17:38:34 +02:00

13 lines
460 B
C#

using TINK.Model.Bike.BluetoothLock;
namespace TINK.Services.BluetoothLock.Exception
{
public class CouldntCloseBoldBlockedException : StateAwareException
{
public CouldntCloseBoldBlockedException() : base(
LockingState.UnknownFromHardwareError, // Lock is closed in most cases, but this is not guaranteed according to haveltec.
MultilingualResources.Resources.ErrorCloseLockBoldBlocked)
{
}
}
}