using TINK.Model.Bike.BluetoothLock;
using TINK.MultilingualResources;

namespace TINK.Services.BluetoothLock.Exception
{
    public class CouldntOpenInconsistentStateExecption : StateAwareException
    {
        public CouldntOpenInconsistentStateExecption(LockingState state) :
            base(
                state,
                string.Format(Resources.ErrorOpenLockUnexpectedState, state))
        {
        }
    }
}