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

11 lines
282 B
C#
Raw Normal View History

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