sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntCloseMovingException.cs
2022-04-25 22:15:15 +02:00

14 lines
410 B
C#

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