sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/ConnectLocationOffException.cs

10 lines
255 B
C#
Raw Normal View History

2022-04-10 17:38:34 +02:00
using TINK.MultilingualResources;
namespace TINK.Services.BluetoothLock.Exception
{
2022-09-06 16:08:19 +02:00
public class ConnectLocationOffException : System.Exception
{
public ConnectLocationOffException() : base(Resources.ErrorConnectLockLocationOffException) { }
}
2022-04-10 17:38:34 +02:00
}