using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
namespace TINK.Services.BluetoothLock.Exception
{
public class CouldntCloseBoltBlockedException : StateAwareException
{
///
/// Constructs a bold blocked exception.
///
///
/// Lock is closed in most cases, but this is not guaranteed according to haveltec.
///
/// State of the lock while/ after bold blocked event.
///
///
public CouldntCloseBoltBlockedException(LockingState state = LockingState.UnknownFromHardwareError) : base(
state,
MultilingualResources.Resources.LockItExceptionCloseLockBoltBlocked)
{
}
}
}