Ajout des exceptions pour les participations aux formations

develop
jboinembalome 4 years ago
parent 8a4365547d
commit fafe2d9d9b
  1. 40
      EPAServeur/Exceptions/ParticipationFormationIncompatibleIdException.cs
  2. 40
      EPAServeur/Exceptions/ParticipationFormationInvalidException.cs
  3. 40
      EPAServeur/Exceptions/ParticipationFormationNotFoundException.cs

@ -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 participation à une formation avec les données à mettre à jour et l'id de la participation à une formation dans la base de données sont différents
/// </summary>
public class ParticipationFormationIncompatibleIdException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationIncompatibleIdException"/> class.
/// </summary>
public ParticipationFormationIncompatibleIdException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationIncompatibleIdException"/> class.
/// </summary>
/// <param name="message"></param>
public ParticipationFormationIncompatibleIdException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationIncompatibleIdException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="inner"></param>
public ParticipationFormationIncompatibleIdException(string message, Exception inner) : base(message, inner)
{
}
}
}

@ -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 lorsqu'une participation formation est invalide
/// </summary>
public class ParticipationFormationInvalidException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationInvalidException"/> class.
/// </summary>
public ParticipationFormationInvalidException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationInvalidException"/> class.
/// </summary>
/// <param name="message"></param>
public ParticipationFormationInvalidException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationInvalidException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="inner"></param>
public ParticipationFormationInvalidException(string message, Exception inner) : base(message, inner)
{
}
}
}

@ -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 lorsqu'une participation à une formation n'a pas été trouvée
/// </summary>
public class ParticipationFormationNotFoundException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationNotFoundException"/> class.
/// </summary>
public ParticipationFormationNotFoundException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
public ParticipationFormationNotFoundException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ParticipationFormationNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="inner"></param>
public ParticipationFormationNotFoundException(string message, Exception inner) : base(message, inner)
{
}
}
}
Loading…
Cancel
Save