sharee.bike-App/LockIt.BusinessLogic/Services/BluetoothLock/Exception/OutOfReachException.cs
2024-04-09 12:53:23 +02:00

9 lines
273 B
C#

namespace ShareeBike.Services.BluetoothLock.Exception
{
/// <summary> Thrown whenever lock is out of reach.</summary>
/// <remarks> If fired when scan for devices does not result in lock being found.</remarks>
public class OutOfReachException : System.Exception
{
}
}