sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/BluetoothDisconnectedException.cs
2021-05-13 17:07:16 +02:00

12 lines
346 B
C#

using TINK.Model.Bike.BluetoothLock;
namespace TINK.Services.BluetoothLock.Exception
{
public class BluetoothDisconnectedException : StateAwareException
{
public BluetoothDisconnectedException() : base(LockingState.Disconnected, MultilingualResources.Resources.ErrorBluetoothDisconnectedException)
{
}
}
}