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

12 lines
346 B
C#
Raw Normal View History

2021-05-13 17:07:16 +02:00
using TINK.Model.Bike.BluetoothLock;
namespace TINK.Services.BluetoothLock.Exception
{
public class BluetoothDisconnectedException : StateAwareException
{
public BluetoothDisconnectedException() : base(LockingState.Disconnected, MultilingualResources.Resources.ErrorBluetoothDisconnectedException)
{
}
}
}