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/ListeIdsCollaborateursVideE...

47 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter lorsque la liste des ids collaborateurs à mettre à jour pour le réferent EP est null ou vide
/// </summary>
public class ListeIdsCollaborateursVideException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ListeIdsCollaborateursVideException"/> class.
/// </summary>
public ListeIdsCollaborateursVideException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ListeIdsCollaborateursVideException"/> class.
/// </summary>
/// <param name="message"></param>
public ListeIdsCollaborateursVideException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ListeIdsCollaborateursVideException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ListeIdsCollaborateursVideException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="ListeIdsCollaborateursVideException"/> class.
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
protected ListeIdsCollaborateursVideException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}