sharee.bike-App/SharedBusinessLogic/Services/CopriApi/Exception/BikeStillInStationException.cs
2024-04-09 12:53:23 +02:00

9 lines
197 B
C#

namespace ShareeBike.Services.CopriApi.Exception
{
public class BikeStillInStationException : System.Exception
{
public BikeStillInStationException(string message) : base(message) { }
}
}