mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
16 lines
522 B
C#
16 lines
522 B
C#
using TINK.Model.Bikes.BikeInfoNS.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.UnknownFromHardwareError,
|
|
MultilingualResources.Resources.ErrorOpenLockBoldWasBlocked)
|
|
{
|
|
}
|
|
}
|
|
}
|