une signature coté serveur
This commit is contained in:
parent
e22356f7ab
commit
7e7619db99
33 changed files with 698 additions and 211 deletions
21
BookAStar/BookAStar/Data/ApiCallFailedException.cs
Normal file
21
BookAStar/BookAStar/Data/ApiCallFailedException.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue