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

14 lines
380 B
C#

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