using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Threading.Tasks; namespace EPAServeur.Exceptions { /// /// Exceptin pour gérer les EP non trouvé /// public class EpNotFoundException : Exception { public EpNotFoundException() { } public EpNotFoundException(string message) : base(message) { } public EpNotFoundException(string message, Exception innerException) : base(message, innerException) { } protected EpNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }