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

9 lines
286 B
C#
Raw Normal View History

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