sharee.bike-App/LockItShared/Services/BluetoothLock/Exception/CouldntOpenBoldWasBlockedException.cs
2021-06-26 20:57:55 +02:00

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)
{
}
}
}