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