using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Exceptions { /// /// Exception à jeter lorsqu'un type de formation n'a pas été trouvé /// public class TypeFormationNotFoundException : Exception { /// /// Initialise une nouvelle instance de la classe class. /// public TypeFormationNotFoundException() { } /// /// Initialise une nouvelle instance de la classe class. /// /// public TypeFormationNotFoundException(string message) : base(message) { } /// /// Initialise une nouvelle instance de la classe class. /// /// /// public TypeFormationNotFoundException(string message, Exception inner) : base(message, inner) { } } }