using ShareeBike.Model.Bikes.BikeInfoNS.BluetoothLock; namespace ShareeBike.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) { } } }