mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
15 lines
420 B
C#
15 lines
420 B
C#
using TINK.Model.Bikes.Bike.CopriLock;
|
|
|
|
namespace TINK.Services.CopriLock.Exception
|
|
{
|
|
public abstract class StateAwareException : System.Exception
|
|
{
|
|
public StateAwareException(LockingState state, string description) : base(description)
|
|
{
|
|
State = state;
|
|
}
|
|
|
|
/// <summary> Holds the state reported by lock.</summary>
|
|
public LockingState State { get; }
|
|
}
|
|
}
|