mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
14 lines
451 B
C#
14 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)
|
|
{
|
|
}
|
|
}
|
|
}
|