mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
16 lines
547 B
C#
16 lines
547 B
C#
using TINK.Model.Bike.BluetoothLock;
|
|
|
|
namespace TINK.Services.BluetoothLock.Exception
|
|
{
|
|
/// <summary>
|
|
/// Lock can not be opened, because bold is/ was blocked. Obstacle might no more block but lock could not be opened completely to obstacle.
|
|
/// </summary>
|
|
public class CouldntOpenBoldWasBlockedException : StateAwareException
|
|
{
|
|
public CouldntOpenBoldWasBlockedException() : base(
|
|
LockingState.Unknown,
|
|
MultilingualResources.Resources.ErrorOpenLockBoldWasBlocked)
|
|
{
|
|
}
|
|
}
|
|
}
|