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

47 lines
1.4 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter quand le collaborateur n'est pas trouvé
/// </summary>
public class CollaborateurNotFoundException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class.
/// </summary>
public CollaborateurNotFoundException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
public CollaborateurNotFoundException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public CollaborateurNotFoundException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class.
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
protected CollaborateurNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}