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

23 lines
681 B
C#
Raw Normal View History

2023-02-22 14:03:35 +01:00
using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
2021-05-13 17:07:16 +02:00
namespace TINK.Services.BluetoothLock.Exception
{
2022-09-06 16:08:19 +02:00
public class CouldntCloseBoldBlockedException : StateAwareException
{
2023-02-22 14:03:35 +01:00
/// <summary>
/// Constructs a bold blocked exception.
/// </summary>
/// <remarks>
/// Lock is closed in most cases, but this is not guaranteed according to haveltec.
/// </remarks>
/// <param name="state">State of the lock while/ after bold blocked event.</param>
/// <remarks>
/// </remarks>
public CouldntCloseBoldBlockedException(LockingState state = LockingState.UnknownFromHardwareError) : base(
state,
2022-09-06 16:08:19 +02:00
MultilingualResources.Resources.ErrorCloseLockBoldBlocked)
{
}
}
2021-05-13 17:07:16 +02:00
}