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

10 lines
277 B
C#

using ShareeBike.MultilingualResources;
namespace ShareeBike.Services.BluetoothLock.Exception
{
public class ConnectLocationOffException : System.Exception
{
public ConnectLocationOffException() : base(Resources.LockItExceptionConnectLockLocationOffException) { }
}
}