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 namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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 /// 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> /// </summary>
public class EngagementIncompatibleIdException : Exception public class EngagementIncompatibleIdException : Exception
{ {
/// <summary> /// <summary>
/// Initialise une nouvelle instance de la classe <see cref="EngagementIncompatibleIdException"/> class. /// Initialise une nouvelle instance de la classe <see cref="EngagementIncompatibleIdException"/> class.

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

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class EngagementNotFoundException : Exception public class EngagementNotFoundException : Exception
{ {

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class FormationIncompatibleIdException : Exception public class FormationIncompatibleIdException : Exception
{ {

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

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class FormationNotFoundException : Exception public class FormationNotFoundException : Exception
{ {

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class ModeFormationNotFoundException : Exception public class ModeFormationNotFoundException : Exception
{ {

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class OrigineFormationNotFoundException : Exception public class OrigineFormationNotFoundException : Exception
{ {

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class StatutFormationNotFoundException : Exception public class StatutFormationNotFoundException : Exception
{ {

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace EPAServeur.Exceptions namespace EPAServeur.Exceptions
{ {
/// <summary> /// <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> /// </summary>
public class TypeFormationNotFoundException : Exception public class TypeFormationNotFoundException : Exception
{ {

Loading…
Cancel
Save