sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/ConnectLocationOffException.cs
2023-08-31 12:20:06 +02:00

10 lines
265 B
C#

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