MAJ de la description

develop
jboinembalome 4 years ago
parent 8a92c3e58c
commit e97d88ccee
  1. 8
      EPAServeur/Exceptions/EngagementIncompatibleIdException.cs
  2. 8
      EPAServeur/Exceptions/EngagementInvalidException.cs
  3. 2
      EPAServeur/Exceptions/EngagementNotFoundException.cs
  4. 2
      EPAServeur/Exceptions/FormationIncompatibleIdException.cs
  5. 8
      EPAServeur/Exceptions/FormationInvalidException.cs
  6. 2
      EPAServeur/Exceptions/FormationNotFoundException.cs
  7. 2
      EPAServeur/Exceptions/ModeFormationNotFoundException.cs
  8. 2
      EPAServeur/Exceptions/OrigineFormationNotFoundException.cs
  9. 2
      EPAServeur/Exceptions/StatutFormationNotFoundException.cs
  10. 2
      EPAServeur/Exceptions/TypeFormationNotFoundException.cs

@ -5,10 +5,10 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsque l'id de l'engagement avec les données à mettre à jour et l'id de l'engagement à mettre sont différents
/// </summary>
public class EngagementIncompatibleIdException : Exception
/// <summary>
/// Exception qui est levée lorsque l'id de l'engagement avec les données à mettre à jour et l'id de l'engagement à mettre sont différents
/// </summary>
public class EngagementIncompatibleIdException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="EngagementIncompatibleIdException"/> class.

@ -5,10 +5,10 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'un engagement est invalide
/// </summary>
public class EngagementInvalidException : Exception
/// <summary>
/// Exception qui est levée lorsqu'un engagement est invalide
/// </summary>
public class EngagementInvalidException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="EngagementInvalidException"/> class.

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'un engagement n'a pas été trouvé
/// Exception qui est levée lorsqu'un engagement n'a pas été trouvé
/// </summary>
public class EngagementNotFoundException : Exception
{

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsque l'id de la formation avec les données à mettre à jour et l'id de la formation dans la base de données sont différents
/// Exception qui est levée lorsque l'id de la formation avec les données à mettre à jour et l'id de la formation dans la base de données sont différents
/// </summary>
public class FormationIncompatibleIdException : Exception
{

@ -5,10 +5,10 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'une formation est invalide
/// </summary>
public class FormationInvalidException : Exception
/// <summary>
/// Exception qui est levée lorsqu'une formation est invalide
/// </summary>
public class FormationInvalidException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="FormationInvalidException"/> class.

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'une formation n'a pas été trouvée
/// Exception qui est levée lorsqu'une formation n'a pas été trouvée
/// </summary>
public class FormationNotFoundException : Exception
{

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'un mode de formation n'a pas été trouvé
/// Exception qui est levée lorsqu'un mode de formation n'a pas été trouvé
/// </summary>
public class ModeFormationNotFoundException : Exception
{

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'une origine de formation n'a pas été trouvée
/// Exception qui est levée lorsqu'une origine de formation n'a pas été trouvée
/// </summary>
public class OrigineFormationNotFoundException : Exception
{

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'un statut de formation n'a pas été trouvé
/// Exception qui est levée lorsqu'un statut de formation n'a pas été trouvé
/// </summary>
public class StatutFormationNotFoundException : Exception
{

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsqu'un type de formation n'a pas été trouvé
/// Exception qui est levée lorsqu'un type de formation n'a pas été trouvé
/// </summary>
public class TypeFormationNotFoundException : Exception
{

Loading…
Cancel
Save