using ShareeBike.Model.Bikes.BikeInfoNS.BluetoothLock; using ShareeBike.MultilingualResources; namespace ShareeBike.Services.BluetoothLock.Exception { public class CouldntOpenInconsistentStateExecption : StateAwareException { public CouldntOpenInconsistentStateExecption(LockingState state) : base( state, string.Format(Resources.LockItExceptionOpenLockUnexpectedState, state)) { } } }