une signature coté serveur

This commit is contained in:
Paul Schneider 2016-12-05 05:51:24 +01:00
commit 7e7619db99
33 changed files with 698 additions and 211 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookAStar.Data
{
class ApiCallFailedException : Exception
{
public ApiCallFailedException(string message) : base(message)
{
}
public ApiCallFailedException(string message, Exception inner) : base(message, inner)
{
}
}
}