using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Exceptions { /// /// Exception qui est levée lorsqu'une origine de formation n'a pas été trouvée /// public class OrigineFormationNotFoundException : Exception { /// /// Initialise une nouvelle instance de la classe class. /// public OrigineFormationNotFoundException() { } /// /// Initialise une nouvelle instance de la classe class. /// /// public OrigineFormationNotFoundException(string message) : base(message) { } /// /// Initialise une nouvelle instance de la classe class. /// /// /// public OrigineFormationNotFoundException(string message, Exception inner) : base(message, inner) { } } }