mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-22 05:47:28 +02:00
Version 3.0.294
This commit is contained in:
parent
d92fb4a40f
commit
8f40f2c208
133 changed files with 17890 additions and 14246 deletions
|
@ -0,0 +1,7 @@
|
|||
|
||||
namespace TINK.Services.CopriLock.Exception
|
||||
{
|
||||
public class CouldntCloseBoldBlockedException : System.Exception
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
namespace TINK.Services.CopriLock.Exception
|
||||
{
|
||||
public class CouldntOpenBoldIsBlockedException : System.Exception
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
namespace TINK.Services.CopriLock.Exception
|
||||
{
|
||||
public class CouldntOpenBoldWasBlockedException : System.Exception
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
namespace TINK.Services.CopriLock.Exception
|
||||
{
|
||||
public class CounldntCloseMovingException : System.Exception
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
namespace TINK.Services.CopriLock.Exception
|
||||
{
|
||||
public class OutOfReachException : System.Exception
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue