sharee.bike-App/LockIt.BusinessLogic/Services/BluetoothLock/Exception/ConnectLocationOffException.cs

10 lines
277 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.MultilingualResources;
2022-04-10 17:38:34 +02:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Services.BluetoothLock.Exception
2022-04-10 17:38:34 +02:00
{
2022-09-06 16:08:19 +02:00
public class ConnectLocationOffException : System.Exception
{
2023-08-31 12:20:06 +02:00
public ConnectLocationOffException() : base(Resources.LockItExceptionConnectLockLocationOffException) { }
2022-09-06 16:08:19 +02:00
}
2022-04-10 17:38:34 +02:00
}