using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Threading.Tasks; namespace EPAServeur.Exceptions { public class CollaborateurPartiException : Exception { public CollaborateurPartiException() { } public CollaborateurPartiException(string message) : base(message) { } public CollaborateurPartiException(string message, Exception innerException) : base(message, innerException) { } protected CollaborateurPartiException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }