sharee.bike-App/SharedBusinessLogic/Repository/Exception/UnsupportedCopriVersionDetectedException.cs
2024-04-09 12:53:23 +02:00

8 lines
231 B
C#

namespace ShareeBike.Repository.Exception
{
public class UnsupportedCopriVersionDetectedException : System.Exception
{
public UnsupportedCopriVersionDetectedException() : base("Unsupported app version detected.")
{ }
}
}