sharee.bike-App/TINKLib/Repository/Exception/ReturnBikeException.cs

11 lines
276 B
C#
Raw Normal View History

2021-06-26 20:57:55 +02:00
using TINK.Repository.Response;
2021-05-13 20:03:07 +02:00
namespace TINK.Repository.Exception
{
public class ReturnBikeException : ResponseException
{
public ReturnBikeException(ReservationCancelReturnResponse response, string message) : base(response, message)
{ }
}
}