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

17 lines
383 B
C#
Raw Normal View History

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

2022-08-30 15:42:25 +02:00
using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
2021-05-13 17:07:16 +02:00
using TINK.MultilingualResources;
namespace TINK.Services.BluetoothLock.Exception
{
2022-09-06 16:08:19 +02:00
public class CouldntOpenInconsistentStateExecption : StateAwareException
{
public CouldntOpenInconsistentStateExecption(LockingState state) :
base(
state,
string.Format(Resources.ErrorOpenLockUnexpectedState, state))
{
}
}
2021-05-13 17:07:16 +02:00
}