mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-07-11 21:46:31 +02:00
7 lines
239 B
C#
7 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.") { }
|
|
}
|
|
}
|