sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntOpenInconsistentStateExecption.cs
2021-06-26 20:57:55 +02:00

17 lines
431 B
C#

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))
{
}
}
}