sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntOpenInconsistentStateExecption.cs

17 lines
431 B
C#
Raw Normal View History

2021-05-13 17:07:16 +02:00

using TINK.Model.Bike.BluetoothLock;
using TINK.MultilingualResources;
namespace TINK.Services.BluetoothLock.Exception
{
public class CouldntOpenInconsistentStateExecption : StateAwareException
{
public CouldntOpenInconsistentStateExecption(LockingState state) :
base(
state,
2021-06-26 20:57:55 +02:00
string.Format(Resources.ErrorOpenLockUnexpectedState, state))
2021-05-13 17:07:16 +02:00
{
}
}
}