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

9 lines
215 B
C#

namespace ShareeBike.Services.BluetoothLock.Exception
{
public class CoundntGetCharacteristicException : System.Exception
{
public CoundntGetCharacteristicException(string message) : base(message)
{ }
}
}