mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
16 lines
502 B
C#
16 lines
502 B
C#
using TINK.Model.Bike.BluetoothLock;
|
|
|
|
namespace TINK.Services.BluetoothLock.Exception
|
|
{
|
|
/// <summary>
|
|
/// Lock can not be opened, because bold is blocked. Lock reports that obstacle is still blocking.
|
|
/// </summary>
|
|
public class CouldntOpenBoldIsBlockedException : StateAwareException
|
|
{
|
|
public CouldntOpenBoldIsBlockedException() : base(
|
|
LockingState.Unknown,
|
|
MultilingualResources.Resources.ErrorOpenLockBoldBlocked)
|
|
{
|
|
}
|
|
}
|
|
}
|