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

8 lines
239 B
C#

namespace ShareeBike.Services.BluetoothLock.Exception
{
public class AlreadyConnectedException : System.Exception
{
public AlreadyConnectedException() : base("Invalid reconnect call detected. Device is already connected.") { }
}
}