|
|
|
@ -0,0 +1,40 @@ |
|
|
|
|
using System; |
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Linq; |
|
|
|
|
using System.Threading.Tasks; |
|
|
|
|
|
|
|
|
|
namespace EPAServeur.Exceptions |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Exception qui est levée lorsque l'id de la demande de formation avec les données à mettre à jour et l'id de la demande de formation dans la base de données sont différents |
|
|
|
|
/// </summary> |
|
|
|
|
public class DemandeFormationIncompatibleIdException : Exception |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="DemandeFormationIncompatibleIdException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
public DemandeFormationIncompatibleIdException() |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="DemandeFormationIncompatibleIdException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
/// <param name="message"></param> |
|
|
|
|
public DemandeFormationIncompatibleIdException(string message) : base(message) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="DemandeFormationIncompatibleIdException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
/// <param name="message"></param> |
|
|
|
|
/// <param name="inner"></param> |
|
|
|
|
public DemandeFormationIncompatibleIdException(string message, Exception inner) : base(message, inner) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |