sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CounldntCloseMovingException.cs
2021-05-13 17:07:16 +02:00

15 lines
451 B
C#

using TINK.Model.Bike.BluetoothLock;
using TINK.Services.BluetoothLock.Tdo;
namespace TINK.Services.BluetoothLock.Exception
{
public class CounldntCloseMovingException : StateAwareException
{
public CounldntCloseMovingException() : base(
LockingState.Open, // Locking bold is probable (according to haveltec) still open.
MultilingualResources.Resources.ErrorCloseLockBikeMoving)
{
}
}
}