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

9 lines
271 B
C#
Raw Normal View History

2021-05-13 17:07:16 +02:00
namespace TINK.Services.BluetoothLock.Exception
{
2022-09-06 16:08:19 +02:00
/// <summary> Thrown whenever lock is out of reach.</summary>
/// <remarks> If fired when scan for devices does not result in lock beeing found.</remarks>
public class OutOfReachException : System.Exception
{
}
2021-05-13 17:07:16 +02:00
}