mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 23:26:26 +01:00
16 lines
408 B
C#
16 lines
408 B
C#
|
|
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))
|
|
{
|
|
}
|
|
}
|
|
}
|