using TINK.Model.Bikes.BikeInfoNS.BluetoothLock; namespace TINK.Services.BluetoothLock.Exception { public class CouldntCloseBoldBlockedException : 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 CouldntCloseBoldBlockedException(LockingState state = LockingState.UnknownFromHardwareError) : base( state, MultilingualResources.Resources.ErrorCloseLockBoldBlocked) { } } }