sharee.bike-App/LockIt.BusinessLogic/Services/BluetoothLock/Exception/CouldntCloseMovingException.cs
2024-04-09 12:53:23 +02:00

14 lines
392 B
C#

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