mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
17 lines
547 B
C#
17 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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|