You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Digitalisation_EPA_Serveur/EPAServeur/Exceptions/DemandeFormationNotFoundExc...

40 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception qui est levée lorsqu'une demande de formation n'a pas été trouvée
/// </summary>
public class DemandeFormationNotFoundException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="DemandeFormationNotFoundException"/> class.
/// </summary>
public DemandeFormationNotFoundException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="DemandeFormationNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
public DemandeFormationNotFoundException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="DemandeFormationNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="inner"></param>
public DemandeFormationNotFoundException(string message, Exception inner) : base(message, inner)
{
}
}
}